@extends('adminlte::page') @section('title', env('APP_NAME') . ' - Turnos') @section('content_header')

Lista de Turnos

@stop @section('content')
@foreach ($turnos as $turno) @endforeach
ID Nombre Hora Inicio Hora Fin Acciones
{{ $turno->id }} {{ $turno->descripcion }} {{ $turno->hora_entrada }} {{ $turno->hora_salida }}
@can('admin.turnos.edit') Editar @endcan
@stop @section('css') @stop @section('js') @if (session('info')) @endif @stop