Files
Sistema-Educativo-Laravel/resources/views/horario/index.blade.php
T

85 lines
3.5 KiB
PHP

@extends('layouts.landing')
@section('head')
@include('layouts._partials.tablaStyle')
@endsection
@section('title',"Inicio")
@section('content')
<div class="container-fluid">
<div class="card shadow mb-4">
<div class="card-header py-3">
<div class="d-sm-flex align-items-center justify-content-between">
<h6 class="m-0 font-weight-bold text-primary">Horarios</h6>
@can('horario.create')
<a href="{{route('horario.create')}}" class="d-sm-inline-block btn btn-sm btn-primary shadow-sm"><i class="fas fa-download fa-sm text-white-50"></i> Asignnar horarios a colaborador</a>
@endcan
</div>
</div>
<div class="card-body">
<div class="container-fluid">
<table id="tcont" class="table table-striped table-bordered nowrap table-hover" style="width:100%;">
<thead>
<tr>
<th>Id</th>
<th>Colaborador</th>
<th>Campus</th>
<th>Opciones</th>
</tr>
</thead>
<tbody>
@forelse ($usuarios as $usuario)
<tr style="width:100%">
<td>{{$usuario->id}}</td>
<td><a href="{{route('horario.show',$usuario->id)}}">{{$usuario->name}}</a></td>
<td>
@forelse($usuario->plantelUsuarios as $plantel)
<span class="badge bg-primary text-white">
{{ $plantel->name }}
</span>
@empty
<span class="text-muted">Sin plantel</span>
@endforelse
</td>
<td class="row mx-auto">
@can('horario.edit')
<div class="col-sm-6 col-md-6"><a class="btn btn-primary" href="{{route('horario.edit',$usuario->id)}}">Edit</a></div>
@endcan
@can('horario.destroy')
<div class="col-sm-6 col-md-6">
<form action="{{route('horario.destroy',$usuario->id)}}" method="POST">
@csrf
@method('DELETE')
<input type="submit" value="DELETE" class="btn btn-danger">
</form>
</div>
@endcan
</td>
</tr>
@empty
<p>Sin horarios cargados.</p>
@endforelse
</tbody>
</table>
</div>
</div>
</div>
</div>
@endsection
@section('scripts')
@include('layouts._partials.tablaScript')
@endsection