@extends('layouts.app') @section('template_title') Ambiente @endsection @section('content')
{{ __('Ambiente') }}
@if ($message = Session::get('success'))

{{ $message }}

@endif
@foreach ($ambientes as $ambiente) @endforeach
No Nombre Ambiente Direccion Descripcion Evento
{{ ++$i }} {{ $ambiente->nombre_ambiente }} {{ $ambiente->direccion }} {{ $ambiente->descripcion }} {{ $ambiente->evento->nombre_evento }}
Show Edit @csrf @method('DELETE')
{!! $ambientes->links() !!}
@endsection