@extends('layouts.admin')
@section('page-title')
{{ __('Manage Opearating Hours') }}
@endsection
@section('breadcrumb')
{{ __('Home') }}
{{ __('Opearating Hours') }}
@endsection
@php
$logos = \App\Models\Utility::get_file('public/');
@endphp
@section('action-button')
@endsection
@section('content')
@include('layouts.setup')
# |
{{ __('Name') }} |
{{ __('Action') }} |
@foreach ($opeatings as $index => $opeating)
{{++$index}} |
{{ $opeating->name }} |
|
@endforeach
@endsection