@extends('layouts.app')
@section('title', trans('title.special_days'))
@section('content')
@php $user = auth()->user(); @endphp
@can('create specialdays')
{{trans('forms.lbl_add_new')}}
@endcan
@if($user->hasAnyPermission(['delete specialdays']))
|
@endif
{{trans("tables.title_title")}} |
{{-- {{trans("tables.note_title")}} | --}}
{{trans("tables.location_title")}} |
{{trans("tables.date_title")}} |
{{trans("tables.action_title")}} |
@endsection
@section('panel-content')
@include('specialdays.form')
@stop
@section('footer-script')
@stop