@extends('layouts.franchise', ['heading' => 'Sales / बिक्री']) @section('content')
@forelse($orders as $order)
{{ $order->order_number }}
{{ $order->status }}
₹ {{ number_format((float) $order->total, 2) }} | BV {{ number_format((float) $order->total_bv, 2) }}
Date: {{ \Illuminate\Support\Carbon::parse($order->created_at)->format('d M Y') }}
Print Invoice
@empty
No sales found.
@endforelse
{{ $orders->links() }}
@endsection