@extends('layouts.master') @section('title', 'Files | Alboosh - Timeless authenticity, born of the desert') @section('title-topbar', 'Files') @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))
@endif @endsection @section('content')| {{ __('basic.id') }} | {{ __('basic.code') }} | {{ __('basic.name') }} | {{ __('basic.worker') }} | {{ __('basic.status') }} | {{ __('basic.date') }} | {{ __('basic.handle') }} |
|---|---|---|---|---|---|---|
| {{ $item->id }} | {{ $item->code }} | {{ $item->name }} | {{ $item->worker->name }} |
@if ($item->status == 0)
@php
$status = 'In progress';
$status_color = 'not_accepted-color-btn';
@endphp
@elseif ($item->status == 1)
@php
$status = 'Done';
$status_color = 'done-color-btn';
@endphp
@endif
{{ $status }}
|
{{ date('d M Y', strtotime($item->date)) }} | {{ __('basic.edit') }} |