%PDF- %PDF-
Direktori : /var/www/html/management/app/Models/ |
Current File : /var/www/html/management/app/Models/Invoice.php |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Invoice extends Model { /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'total', 'order_id', ]; public function order() { return $this->belongsTo(Order::class); } }