@extends(backpack_view('blank')) @php Widget::add([ 'type' => 'div', 'class' => 'row', 'content' => [ [ 'type' => 'chart', 'controller' => App\Http\Controllers\Admin\Charts\ProductsSplitChartController::class, 'class' => 'card mb-2', 'wrapper' => ['class' => 'col-md-6'], 'content' => [ 'header' => 'Subscriptions by Product', ], ], [ 'type' => 'chart', 'controller' => App\Http\Controllers\Admin\Charts\SubscriptionDueByMonthChartController::class, 'class' => 'card mb-2', 'wrapper' => ['class' => 'col-md-6'], 'content' => [ 'header' => 'Renewal Value by Month', ], ], ], ]); @endphp @section('content') @endsection