@extends('layouts.basic') @section('styles') @endsection @section('content')

Delivery Orders

{{--
--}}
Delivery Orders

{{--

Delivery Orders-list

--}}
@foreach ($delivery as $deliverys) @endforeach
S.NO Date DO-number Reference no Customer name Contact no Total Delivery Status Delivery Order Action Purchase Order Action
{{ $loop->iteration }} {{ date('d/m/Y', strtotime($deliverys->quotation->date)) }} {{ $deliverys->do_number}} {{ $deliverys->quotation->quotation_no }} {{ $deliverys->quotation->customer->customer_name }} {{ $deliverys->quotation->customer->mobile }} ₹{{ $deliverys->quotation->total }} {{ $deliverys->delivery_status }} {{-- --}}
{{-- --}} {{-- --}}
@php $quotationId = $deliverys->quotation->id; $existsInDeliver = DB::table('delivery_orders') ->where('quotation_id', $quotationId) ->exists(); $file_check = DB::table('delivery_orders')->where('quotation_id', $deliverys->quotation->id)->first(); @endphp @if($existsInDeliver == true) @if($file_check && $file_check->files_name !== null) @else

-

@endif @else

-

@endif
@endsection @section('script') @endsection