Files
w4rpservices/app/Models/SRP/SrpPayout.php
2019-07-02 23:55:35 -05:00

28 lines
442 B
PHP

<?php
namespace App\Models\SRP;
use Illuminate\Database\Eloquent\Model;
class SrpPayout extends Model
{
//Table Name
protected $table = 'srp_payouts';
//Primary Key
public $primaryKey = 'id';
//Timestamps
public $timestamps = false;
//Fillable
protected $fillable = [
'code',
'payout',
];
public function shipType() {
return $this->belongsTo(SrpShipType::class);
}
}