@extends('layouts/contentLayoutMaster') @section('title', 'Dashboard') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')

Customers

@foreach( $customers as $customer ) @can('Business - CustomerRfqs - List') @endcan logo @can('Business - CustomerRfqs - List') @endcan @endforeach
@can('Dashboards')

Awaiting to Purchese

@foreach( $awaiting_to_purcheses as $awaiting_to_purchese ) @php $customer_po_part = \App\Models\CustomerPOPart::where('customer_po_id', '=', $awaiting_to_purchese->customer_po_id) ->where('inventory_id', '=', $awaiting_to_purchese->id)->first(); @endphp @endforeach
CPO# Part Number Description Quantity Unit Price Total Price
{{ $customer_po_part->customerPO->customer_po_number }} {{ $awaiting_to_purchese->part_number }} {{ $awaiting_to_purchese->description }} {{ number_format($awaiting_to_purchese->sum_cpo - $awaiting_to_purchese->sum_vpo) }} {{ number_format($customer_po_part->unit_price, 2) }} {{ number_format($customer_po_part->unit_price * ($awaiting_to_purchese->sum_cpo - $awaiting_to_purchese->sum_vpo), 2) }}

Customers Orders

Months Orders

@endcan @endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection