You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
587 B
24 lines
587 B
<?php
|
|
|
|
namespace App\Domains\Finance\Models;
|
|
|
|
use App\Domains\Finance\Policies\ProductMappingPolicy;
|
|
use Illuminate\Database\Eloquent\Attributes\Fillable;
|
|
use Illuminate\Database\Eloquent\Attributes\UsePolicy;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
#[Fillable([
|
|
'code',
|
|
'name',
|
|
'chart_of_account_id',
|
|
'client_id',
|
|
])]
|
|
#[UsePolicy(ProductMappingPolicy::class)]
|
|
class ProductMapping extends Model
|
|
{
|
|
public function chartOfAccount(): BelongsTo
|
|
{
|
|
return $this->belongsTo(ChartOfAccount::class);
|
|
}
|
|
}
|
|
|