mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-09-21 15:13:47 -04:00
40 lines
860 B
PHP
40 lines
860 B
PHP
<?php
|
|
|
|
namespace Modules\Menu\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Modules\Product\Entities\Brand;
|
|
|
|
class MegaMenuBottomPanel extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $guarded = ['id'];
|
|
|
|
public static function boot()
|
|
{
|
|
parent::boot();
|
|
|
|
self::created(function ($model) {
|
|
Cache::forget('MegaMenu');
|
|
});
|
|
self::updated(function ($model) {
|
|
Cache::forget('MegaMenu');
|
|
});
|
|
self::deleted(function ($model) {
|
|
Cache::forget('MegaMenu');
|
|
});
|
|
|
|
}
|
|
|
|
public function menu(){
|
|
return $this->belongsTo(Menu::class,'menu_id','id');
|
|
}
|
|
public function brand(){
|
|
return $this->belongsTo(Brand::class,'brand_id','id');
|
|
}
|
|
|
|
}
|