@extends('templates.adminlte') @section('extra-css') @endsection @section('content-header')

Evento

@endsection @section('content')
Volver Editar

Fecha: {{ $event->date }}

Teléfono: {{ $event->phone }}

Nombre: {{ $event->client_name }}

Domicilio: {{ $event->client_address }}

Lugar del evento: {{ $event->event_address }}

Fecha y hora del evento: {{ $event->event_date }}

Tipo de evento: {{ $event->event_type }}

@foreach ($event->employees as $index => $employee)

Responsable {{ $index + 1 }}: {{ $employee->name }}

@endforeach
{{-- send reminder --}}
@csrf
{{-- Show pdf with event --}}
@foreach ($event->products as $material) @endforeach
Material Cantidad
{{ $material->name }} {{ $material->caliber != '' ? $material->caliber . "''" : '' }}{{ $material->caliber != '' && $material->shots != '' ? 'x' : '' }}{{ $material->shots != '' ? "$material->shots" : '' }} {{ $material->shape }} {{ $material->pivot->quantity }}
@foreach ($event->equipments as $equipment) @endforeach
Equipo Cantidad
{{ $equipment->name }} {{ $equipment->pivot->quantity }}
@endsection