QueenFruits/Backend/app/Models/Supplier.php

41 lines
876 B
PHP

<?php
namespace App\Models;
use App\Traits\Multitenantable;
use DateTimeInterface;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Supplier extends Model
{
use SoftDeletes, Multitenantable;
protected $primaryKey = 'uuid';
public $incrementing = false;
protected $keyType = 'string';
protected $fillable = [
'uuid',
'tenant_id',
'name',
'email',
'phone_number',
'address'
];
protected $casts = [
'created_at' => 'datetime',
'updated_at' => 'datetime',
];
protected $dates = ['deleted_at'];
protected function serializeDate(DateTimeInterface $date)
{
return $date->format('Y-m-d H:i:s');
}
public function purchases() {
return $this->hasMany(Purchase::class, 'supplier_id', 'uuid');
}
}