@extends('layouts.master')
@section('titulo')
Museo
@endsection
@section('contenido')
Lista de Pintores
Nombre |
Pais |
Cuadros |
@php $bgRojo = false @endphp
@foreach( $pintores as $pintor )
@if($bgRojo)
@php $bgRojo = false @endphp
@else
@php $bgRojo = true @endphp
@endif
{{$pintor->nombre}} |
{{$pintor->pais}} |
{{$pintor->cuadros->count()}} |
@endforeach
@endsection