Files
monica/app/Models/Currency.php

34 lines
676 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
class Currency extends Model
{
use HasFactory;
protected $table = 'currencies';
/**
* The attributes that are mass assignable.
*
* @var array<int,string>
*/
protected $fillable = [
'code',
];
/**
* Get the account records that have the currency.
*/
public function accounts(): BelongsToMany
{
return $this->belongsToMany(Account::class)
->withPivot('active')
->withTimestamps();
}
}