/var/www/hkosl.com/littleark/webadmin/models/Alert.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

use Illuminate\Database\Capsule\Manager as DB;
use 
Carbon\Carbon as Carbon;

class 
Alert extends BaseModel{
    protected 
$table "alert";

    public function 
alertable(){
        return 
$this->morphTo();
    }
}