@extends('layouts.master')
@section('title',__('All Revenue Reports'))
@section('breadcum')
{{ __('All Revenue Reports') }}
@endsection
@section('maincontent')
{!! $revenue_chart->container() !!}
{{ __('#') }} |
{{__('User Name')}} |
{{__('Payment Method')}} |
{{__('Paid Amount')}} |
{{__('Subscription From')}} |
{{__('Subscription To')}} |
{{__('Date')}} |
@if ($revenue_report)
@foreach ($revenue_report as $key => $report)
{{$key+1}}
|
{{$report->user_name}} |
{{$report->method}} |
{{$report->price}} |
{{$report->subscription_from}} |
{{$report->subscription_to}} |
{{$report->created_at}} |
@endforeach
@endif
@endsection
@section('script')
{!! $revenue_chart->script() !!}
@endsection