@extends('adminlte::page')
@section('title', 'Listado de Grúas')
@section('content_header')
Listado de Grúas
@stop
@section('content')
Número |
Nombre |
Dirección |
Teléfono |
Email |
Acciones |
@foreach ($gruas as $index => $grua)
{{ $index + 1 }} |
{{ $grua->nombre }} |
{{ $grua->direccion }} |
{{ $grua->telefono }} |
{{ $grua->email }} |
|
@endforeach
@stop
@section('css')
@stop
@section('js')
@stop