@php use App\Models\warehouse; @endphp @extends('admin.layouts.app') @section('title',get_setting('site_name').' Holiday Setup') @section('content')
Holiday Setup
@can('Holiday-create') @endcan @can('Holiday-export') {{__('Export')}} @endcan
@foreach($holidays as $holiday) @endforeach
Description From To Number of holiday Warehouse/Branch Action
{{$holiday->description}} {{$holiday->from}} {{$holiday->to}} {{$holiday->number_of_holiday}} @if($holiday->warehouse_id==null) {{__("All Warehouse/Branch")}} @else {{warehouse::where('id',$holiday->warehouse_id)->value('name')}} @endif @can('Holiday-edit') @endcan @can('Holiday-delete') @endcan
{{$holidays->links()}}
@endsection @section('modal') @endsection @section('script') @endsection