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.

59 lines
1.2 KiB
PHTML

3 years ago
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
3 years ago
use Illuminate\Support\Facades\Storage;
3 years ago
class Product extends Model
{
use HasFactory;
protected $fillable = [
'name',
'photo',
'price',
'description',
];
3 years ago
protected $appends = ['photo_url'];
public function getPhotoUrlAttribute()
{
if ($this->photo != null) {
return asset(Storage::url($this->photo));
}
return null;
}
public function payrollItems()
{
return $this->hasMany(PayrollItem::class);
}
public function payrolls()
{
return $this->hasManyThrough(
Payroll::class,
PayrollItem::class,
'product_id',
'id',
'id',
'payroll_id'
);
}
protected static function booted()
{
static::deleting(function ($model) {
if ($model->payrolls()->count() >= 1) {
foreach ($model->payrolls as $payroll) {
$payroll->items()->delete();
$payroll->delete();
}
}
});
}
3 years ago
}