@extends('admin/layouts/default') {{-- Page title --}} @section('title') Database Charts @parent @stop {{-- Page content --}} @section('content')

Database Charts

Bar chart (by age)
{!! $bar->container() !!}
Bar chart (by country)
{!! $country->container() !!}
Pie Chart
{!! $pie->container() !!}
Donut chart
{!! $donut->container() !!}
Area Chart
{!! $area->container() !!}
Line Chart
{!! $line->container() !!}
@stop {{-- page level scripts --}} @section('footer_scripts') {!! $bar->script() !!} {!! $country->script() !!} {!! $pie->script() !!} {!! $donut->script() !!} {!! $area->script() !!} {!! $line->script() !!} @stop