@extends('layouts.master') @section('titulo') Museo @endsection @section('contenido') @if(session('mensaje'))
{{session('mensaje')}}
@endif

{{$pintor->nombre}}

pais: {{$pintor->pais}}

Cuadros

@foreach($pintor->cuadros as $cuadro)
{{$cuadro->nombre}}
@php $exposiciones = \App\Models\Cuadro::findorFail($cuadro->id)->exposiciones;@endphp @foreach($exposiciones as $exposicion)

{{$exposicion->nombre}}

@endforeach @if($cuadro->disponible) @else @endif
@endforeach
@endsection