1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?phpuse Illuminate\Database\Capsule\Manager as DB;use Carbon\Carbon as Carbon;class Alert extends BaseModel{ protected $table = "alert"; public function alertable(){ return $this->morphTo(); }}