Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public function show($id)
  2. {
  3. $categoria = Categoria::find($id);
  4. return view('categorias.show',compact('categoria','cate'));
  5. }
  6.  
  7. @foreach ($categoria as $cat)
  8. {{ $cat->nombre }}
  9. @foreach ($cat->peliculas as $pelicula)
  10. {{ $pelicula->nombre }}
  11. @foreach
  12. @endforeach
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement