Files
w4rpservices/app/Models/MoonRentals/MoonRentalPayment.php
2020-12-25 20:48:55 +09:00

29 lines
500 B
PHP

<?php
namespace App\Models\MoonRentals;
use Illuminate\Database\Eloquent\Model;
class MoonRentalPayment extends Model
{
//Table Name
protected $table = 'alliance_moon_rental_payments';
//Primary Key
public $primaryKey = 'id';
//Timestamps
public $timestamps = true;
/**
* These are the items which are mass assignable
*
* @var array
*/
protected $fillable = [
'invoice_id',
'payment_amount',
'reference_id',
];
}