@extends('layouts.admin.app') @section('page-title') {{ __('Dashboard') }} @endSection @section('page-nav-title')

{{ __('Sales Of Branch') }}

@endsection @section('content') @include('includes.dialog') @include('admin.report.parts.filter', ['url' => route('admin.report.sales_by_branch')])
@foreach ($branches as $branch) @endforeach
{{ __('Name') }} {{ __('Image') }} {{ __('Orders') }} {{ __('Delivery') }} {{ __('Total') }}
{{ $branch['name'] }} {{ $branch['total_HB_Driver'] }} {{ __('IQD') }} {{ $branch['total'] }} {{ __('IQD') }}
{{ __('Total') }} {{ $total }} {{ __('IQD') }}
@endsection