You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
676 B
PHTML

1 year ago
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Support\Carbon;
1 year ago
class Sale extends Model
{
protected $fillable = [
'code',
'date',
'customer_id',
'total',
'note'
1 year ago
];
public function customer()
{
return $this->belongsTo(Customer::class)->withTrashed();
1 year ago
}
public function items()
{
return $this->hasMany(SaleItem::class);
}
public function formatedDate(): Attribute
{
return Attribute::make(
get: function () {
return Carbon::parse($this->date)->format('d/m/Y');
}
);
}
1 year ago
}