@extends('layouts.app') @section('title', 'Peajes') @section('page-title', 'Centros / Peajes') @section('breadcrumb') @endsection @push('styles') @endpush @section('content')

Centros / Peajes

Limpiar
@if($items->count() > 0) @foreach($items as $item) @endforeach
Nombre Concesión Vías Mant. Estado Acciones
{{ $item->num_peaje }} {{ $item->nombre_centro }} {{ $item->concesion->nombre ?? '-' }} {{ $item->vias_count }} @if($item->mantenimiento) @else No @endif {{ $item->estado == 1 ? 'Activo' : 'Inactivo' }}
@csrf
@if($items->hasPages()) @endif @else

No hay peajes registrados

Crea un nuevo peaje para comenzar.

@endif
@endsection