@extends('backend.layouts.app') @section('title', __('Dashboard')) @section('content') @php $data = parcelData() @endphp
Welcome!

{{ auth()->user()->name }}

Role : Finance

Total Sale by Office

Date : {{ $today }}

@foreach($daily_sales as $sale)
{{ $sale->office->label }}
@if(is_null($sale->deposit_received)) @else @endif
{{ displayPriceFormat($sale->total_sales, '$') }}
Cash
{{ displayPriceFormat($sale->cash, '$') }}
Bank Transfer
{{ displayPriceFormat($sale->cash, '$') }}
@endforeach
@endsection @push('after-scripts') @endpush