Inheritance: extends Illuminate\Database\Eloquent\Model
Example #1
0
 public static function postView($type, $data)
 {
     if ($type == 'id') {
         return Post_View::findOrFail($data);
     }
     return Post_View::where($type, $data)->first();
 }