Ejemplo n.º 1
0
 public function __construct()
 {
     $this->movies = Movie::all();
     $this->genres = Genre::all();
 }
Ejemplo n.º 2
0
 public function __construct()
 {
     $this->middleware('auth');
     $this->movies = Movie::all();
     $this->genres = Genre::all();
 }