@extends('layouts.app')
@section('title', trans('menu.schedule_title'))
@section('plugin-styles')
@endsection
@section('content')
@php
$user = auth()->user();
@endphp
@can('create schedules')
{{trans('forms.lbl_add_new')}}
@endcan
@include('timetracker::schedules.filters')
@if($user->hasAnyPermission(['delete schedules']))
|
@endif
{{trans('forms.lbl_name')}} |
{{trans('locations.title')}} |
{{trans('title.workstations')}} |
{{trans('title.positions')}} |
{{trans('title.date')}} |
@if($user->hasAnyPermission(['edit schedules', 'delete schedules']))
{{trans('title.action')}} |
@endif
@endsection
@section('footer-script')
@endsection