@extends('layout.main')
@section('content')
Holidays
@can('holidays-create')
Add new
@endcan
Holidays List
Name |
Date |
Action |
@foreach ($holidays as $holiday)
{{ $holiday->name }}
{{ $holiday->date }}
@can('holidays-edit')
@endcan
@endforeach
@endsection