@extends('layouts.business.master') @section('title') {{ __('Overview') }} @endsection @section('main_content')

{{ __('Revenue Statistic') }}

{{__('Profit')}}: 0

{{__('Loss')}}: 0

{{ __('Statement') }}

{{__('Income')}}: 0

{{__('Expense')}}: 0

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

{{-- Dynamic data come --}}
{{ __('SL') }}. {{ __('Branch') }} {{ __('Total Sales') }} {{ __('Paid') }} {{ __('Due') }}

{{ __('Expire Product') }}

@foreach ($branches_expired_products as $branch) @endforeach
{{ __('SL') }}. {{ __('Branch') }} {{ __('Qty') }}
{{ $loop->iteration }} {{ $branch->name }}
{{ $branch->expired_stocks_count }}

{{ __('Branch Wise Purchases') }}

{{-- Dynamic data --}}
{{ __('SL') }}. {{ __('Branch') }} {{ __('Total Purchase') }} {{ __('Paid') }} {{ __('Due') }}
@if(moduleCheck('HrmAddon'))

{{ __('Employee Overview') }}

@foreach ($branches as $branch) @endforeach
{{ __('SL') }}. {{ __('Branch') }} {{ __('Staffs') }}
{{ $loop->iteration }} {{ $branch->name }} {{ $branch->employees_count }}
@endif
@endsection @push('js') @endpush