mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 12:24:09 +00:00
4da5cfd7be
added billing_amount and salestax_amount to supplierbooking table
16 lines
228 B
PHP
16 lines
228 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Marking extends Model
|
|
{
|
|
protected $fillable = ['email','marking'];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('app\User');
|
|
}
|
|
}
|