@extends('layouts.master')
@section('content')
| Date |
Retailer |
Channel |
Order Booker |
Order Total |
Action |
@foreach ($orders as $data)
| {{$data->date}} |
{{$data->retailer}} |
{{$data->channel}} |
{{$data->emp_name}} |
{{number_format($data->order_total, 2)}} |
{{-- Edit --}}
{{-- Edit --}}
{{-- Bill --}}
|
@endforeach
@endsection