コード例 #1
0
ファイル: Front.php プロジェクト: prakhyat-shrestha/laramovie
 public function __construct()
 {
     $this->movies = Movie::all();
     $this->genres = Genre::all();
 }
コード例 #2
0
 public function __construct()
 {
     $this->middleware('auth');
     $this->movies = Movie::all();
     $this->genres = Genre::all();
 }