@extends('adminlte::page')
@section('content_header')
Listado de Turnos
@stop
@section('content')
| Nro |
Nombre del turno |
Acción |
@php
$contador = 1;
@endphp
@foreach($turnos as $turno)
| {{$contador++}} |
{{$turno->nombre}} |
|
@endforeach
@stop
@section('css')
@stop
@section('js')
@stop