QueenFruits/Backend/app/Models/ReceiptItem.php

41 lines
763 B
PHP

<?php
namespace App\Models;
use App\Traits\Multitenantable;
use DateTimeInterface;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class ReceiptItem extends Model
{
use SoftDeletes, Multitenantable;
public $primaryKey = 'uuid';
public $incrementing = false;
public $keyType = 'string';
protected $fillable = [
'uuid',
'tenant_id',
'product_variant_id',
'raw_material_id',
'quantity'
];
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');
}
}