@extends('layouts.boxes') @section('content')
{{-- Mensajes de éxito --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Errores de validación --}} @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{-- TAB LISTA --}}
Boxes existentes
{{-- --}} @php {{ $blue=0; $yellow=0; $gray=0; }} @endphp @foreach($boxes as $box) {{-- --}} @endforeach
IdModelo Serie Host Ubicacion Update {{ $now }}
{{ $box['id'] }}{{ $box['modelo'] }} {{ $box['serie'] }} {{ $box['host'] }} {{ $box['ubicacionact'] }} @switch($box['diffdate']) @case(1) @php {{ $blue++;}} @endphp @break @case(2) @php {{ $yellow++;}} @endphp @break @case(3) @php {{ $gray++;}} @endphp @endswitch {{ $box['bw'] }}
{{ $status[1] ?? '0' }} :Menos de una hora {{ $status[2] ?? '0' }} :Mas de una hora {{ $status[3] ?? '0' }} :Mas de un dia
{{ $boxes->links() }}
{{-- TAB FORMULARIO --}}
@csrf
@endsection