@extends('admin.layout.app') @section('content')

Owner Report

Reset
@if(!isset($_GET['report_type']) || $_GET['report_type']=='order')
@foreach($business as $key=>$busines) @endforeach
S No. Owner Restaurant Order Amount
{{$key+1}} {{@$busines->owner_name}} {{@$busines->business_name}} {{@$busines->total_order}} ${{@$busines->total_amount}}
@endif @if(@$_GET['report_type']=='table_reservation')
@foreach($booking as $key=>$table) @endforeach
S No. Owner Restaurant Count Cover/People
{{$key+1}} {{@$table->owner_name}} {{@$table->business_name}} {{@$table->no_people}} {{@$table->total_booking}}
@endif
@endsection