D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
proc
/
self
/
root
/
home
/
etb1lp46s9ed
/
washeet.softurecs.com
/
app
/
Models
/
Filename :
Autoreply.php
back
Copy
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Autoreply extends Model { use HasFactory; protected $guarded = ['id']; public function user() { return $this->belongsTo(User::class); } public function device() { return $this->belongsTo(Device::class); } public static function boot() { parent::boot(); static::updated(function ($autoreply) { clearCacheNode(); }); static::created(function ($autoreply) { clearCacheNode(); }); } }