@extends('layouts.app') @section('content')
@csrf

{{__("Demand")}}

@if($isSuperAdmin)
@endif
@if(!$demands->isEmpty())

{{__("Demands")}}

@if($isSuperAdmin) @endif @foreach($demands as $d) @if($isSuperAdmin) @endif @endforeach
{{__("Number")}}{{__("Fitter")}} {{__("Status")}} {{__("Warehouse")}} {{__("Estimated send date")}} {{__("Created at")}}
{{$d->id}}{{$d->name.' '.$d->surname}}{{$d->status}} {{$d->storage}} @if($d->estimated_send_date) {{date('d.m.Y.', strtotime($d->estimated_send_date))}} @endif @if($d->created_at) {{date('d.m.Y. H:i:s', strtotime($d->created_at))}} @endif
@endif @endsection