@extends('layouts.app') @section('content') @if(!$demands->isEmpty())

{{__("Demands")}}

@foreach($demands as $d) @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