How to call models in Laravel 5? How to call models in Laravel 5? laravel laravel

How to call models in Laravel 5?


Try changing this:

use Models\Blog\Posts as Posts;

To this:

use App\Models\Blog\Posts;


In Laravel 5.2 it's just:

use App\Blog;

or

use App\Blog\Posts;


Change the following

class Posts extends Model {

to

class Posts extends \Eloquent {