@extends('layouts.master') @section('title', 'Hr Requests | Alboosh - Timeless authenticity, born of the desert') @section('title-topbar', __('basic.hr requests')) @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))
@endif @endsection @section('content')| {{ __('basic.type') }} | {{ __('basic.name') }} | {{ __('basic.worker') }} | {{ __('basic.date') }} | {{ __('basic.status') }} | {{ __('basic.responsible') }} | {{ __('basic.responsible comment') }} | {{ __('basic.created at') }} | {{ __('basic.updated at') }} | {{ __('basic.handle') }} |
|---|---|---|---|---|---|---|---|---|---|
| {{ $item->type_msg }} | {{ $item->name }} | @if($item->worker) {{ $item->worker->full_name }} @endif | @if($item->start_at) {{ __('basic.start') }}: {{ date('Y-m-d', strtotime($item->start_at)) }} @endif @if($item->end_at) {{ __('basic.end') }}: {{ date('Y-m-d', strtotime($item->end_at)) }} @endif | {{ $item->status_msg }} | @if($item->responsible) {{ $item->responsible->full_name }} @endif | {{ $item->responsible_comment }} | {{ date('Y-m-d', strtotime($item->created_at)) }} | {{ date('Y-m-d', strtotime($item->updated_at)) }} |