@extends('layouts.master') @section('title',__('index.office_time')) @section('action',__('index.lists')) @section('button') @can('create_office_time') @endcan @endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.officeTime.common.breadcrumb')
@lang('index.office_time_filter')
@if(!isset(auth()->user()->branch_id))
@endif
@lang('index.reset')
Office Time Lists
@canany(['show_office_time','edit_office_time','delete_office_time']) @endcan @forelse($officeTimes as $key => $value) @canany(['show_office_time','edit_office_time','delete_office_time']) @endcanany @empty @endforelse
# {{ __('index.opening_time') }} {{ __('index.closing_time') }} {{ __('index.shift') }} {{ __('index.category') }} {{ __('index.status') }}{{ __('index.action') }}
{{++$key}} {{\App\Helpers\AttendanceHelper::changeTimeFormatForAttendanceView($value->opening_time)}} {{\App\Helpers\AttendanceHelper::changeTimeFormatForAttendanceView($value->closing_time)}} {{ucfirst($value->shift)}} {{removeSpecialChars($value->category)}}
    @can('edit_office_time')
  • @endcan @can('show_office_time')
  • @endcan @can('delete_office_time')
  • @endcan

{{ __('index.no_records_found') }}

@include('admin.officeTime.show') @endsection @section('scripts') @include('admin.officeTime.common.scripts') @endsection