@extends('admin.layouts.master') @section('title',' Financial Reports') @section('maincontent') @include('admin.layouts.topbar',$data)
{{__('Orders Total')}}
@foreach($order_data as $value) @endforeach
{{ __('Months') }} {{ __('Order Count') }} {{ __('Total Amount') }}
{{ $value->month }} {{ $value->count }} {{ $value->total_amount }}
@endsection @section('script') @endsection