Xu ly giao dien San Pham
This commit is contained in:
19
app/Models/ContractCustomer.php
Normal file
19
app/Models/ContractCustomer.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Concerns\HasUuids;
|
||||
use Illuminate\Database\Eloquent\Relations\Pivot;
|
||||
|
||||
class ContractCustomer extends Pivot
|
||||
{
|
||||
use HasUuids;
|
||||
|
||||
protected $table = 'contract_customers';
|
||||
|
||||
public $incrementing = false;
|
||||
|
||||
protected $keyType = 'string';
|
||||
|
||||
protected $guarded = [];
|
||||
}
|
||||
Reference in New Issue
Block a user