mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 20:34:09 +00:00
17 lines
321 B
PHP
17 lines
321 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class LocationFees extends AbstractModel
|
|
{
|
|
protected $table = 'location_fees';
|
|
|
|
protected $fillable = [
|
|
'forwarder_id', 'state', 'rate', 'outstation_rate'
|
|
];
|
|
|
|
public function forwarder()
|
|
{
|
|
return $this->belongsTo(Forwarder::class, 'forwarder_id');
|
|
}
|
|
} |