@extends('layouts.view') @section('title',trans('checkInRequest.checkInRequests')) @section('links') @endsection @section('content')

{{trans('checkInRequest.checkInRequests')}}

@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{trans('lang.click_here')}}
@if(count($checkInRequest->notes('Check In/Out'))) @foreach($checkInRequest->notes('Check In/Out') as $note)

{{$note->note}}

{{$note->created_at->diffForHumans()}}
@endforeach @endif
@if($checkInRequest->status == auth()->id())
@endif
@if(($checkInRequest->status >0)&&(Auth::user()->hasRole('Admin'))) {{trans('lang.assign')}} @endif
@endsection