@extends('layouts.home_layout') @php $pageTitle = "Order Details"; @endphp @section('title', $pageTitle) @section('style') @endsection @section('content')
@include('common.alert_msg')
@if($order->payment != NULL) @endif @foreach ($details as $key=> $item) @endforeach
Invoice #: {{ $order->order_no }}
Order Date: {{ date('d M Y',strtotime($order->order_date)) }}
Billing Address
{{ $order->bfname }} {{ $order->blname }}
{{$order->bmobile }}
{{$order->bemail }}
{{$order->baddress }}, {{$order->bcity }}, {{$order->bzipcode }}
{{$order->bupazila }},{{$order->bdistrict }},{{$order->bdivision }}
Shipping Address
{{ $order->sfname ? $order->sfname : $order->bfname }} {{ $order->sfname ? $order->blname : $order->blname }}
{{$order->sfname ? $order->smobile : $order->bmobile }}
{{ $order->sfname ? $order->semail : $order->bemail }}
{{ $order->sfname ? $order->saddress : $order->baddress }}, {{ $order->sfname ? $order->scity : $order->bcity }}, {{$order->sfname ? $order->szipcode : $order->bzipcode }}
{{$order->sfname ? $order->supazila : $order->bupazila }},{{$order->sfname ? $order->sdistrict : $order->bdistrict }},{{$order->sfname ? $order->sdivision : $order->bdivision }}
Payment Method {{$order->payment_method }}
Booking Money {{$order->booking_money }}
Due Payment {{$order->payment }}
Product Desctiption Color Weight Qty Price
Cattle ID: {{$item->cattle_no}} {{$item->cattle_color}} {{$item->cattle_weight}} kg {{$item->qty}} {{$item->cattle_price}}
Total:{{$order->total_amount }}
Pay:{{$order->booking_money +$order->payment }}
Total Due:{{$order->total_amount - ($order->booking_money +$order->payment) }}
@endsection @section('script') @endsection