@extends('panel.layouts.app') @section('page-title') {{ LaraCore::setting('html_prefix') }} {{ (LaraCore::setting('html_prefix') != '') ? '|' : '' }} Home @stop @section('content')
{{ Form::open(["url"=>route('print.account.receipt.admin'),"method"=>"POST","target"=>"_blank"]) }} {{ Form::hidden('receips-ids','',['id'=>'receips-ids']) }} {{ Form::close() }} {{ Form::open(["url"=>route('print.account.carrier.receipt.admin'),"method"=>"POST","target"=>"_blank"]) }} {{ Form::hidden('carrier-receipt-ids','',['id'=>'carrier-receipt-ids']) }} {{ Form::hidden('carrier-id','',['id'=>'carrier-id']) }} {{ Form::hidden('carrier-name','',['id'=>'carrier-name']) }} {{ Form::close() }} {{ Form::open(["url"=>route('admin.branch.dashboard'),"method"=>"POST","target"=>"_blank"]) }} {{ Form::hidden('branch_id','',['id'=>'branch_id']) }} {{ Form::close() }}
{{--

{{$today}}

--}}

{{$today}}

Parcels {{$total_today_parcel}} / {{$total_month_parcel}}
Sales {{number_format($total_today_booking, 2)}} / {{number_format($total_month_booking, 2)}}

Sales and Bookings - Today

Booking Sales

Sales All Branches - Month

@foreach($branches as $branch)

{{$branch['name']}}

Sales
@endforeach
{{ Form::select( 'branch', $all_branch, '0', [ "class" => "form-control", "id" => "branch", "onchange" => "branchChange()"] ) }}
    @forelse($parcles as $parcel) @include('superadmin.dashboard.parcel_item',[$parcel]) @empty
  • No records found.
  • @endforelse
@stop @section('custom-scripts') @stop