Files
exchange/app/Invoice.php
T
2020-09-03 12:29:58 +08:00

15 lines
247 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Invoice extends Model
{
protected $fillable = ['invoice_url','amount','booking_id'];
public function booking(){
return $this->belongsTo('App\Booking');
}
}