Beispiel #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     //        $dados['dados']     = Video::all();
     $dados['fotos'] = Foto::where('status', '=', 1)->get();
     $dados['imagens'] = Midia::where('id_tipo_midia', '=', $this->tipo_midia)->get();
     return view('site/galeria', $dados);
 }
 public function foto($id)
 {
     $this->data['title'] = 'Album Foto';
     $album = Models\Foto::where('id_album', $id)->OrderBy('id_foto', 'desc')->paginate(12);
     $this->data['foto'] = $album;
     return view('bappeda.galeri_detail', $this->data);
 }