@extends('layouts.admin') @section('title',__('adminstaticwords.Dashboard')) @section('content')

{{__('adminstaticwords.Dashboard')}}


{!! $activesubsriber->container() !!}
{!! $piechart->container() !!}
{!! $doughnutchart->container() !!}
{!! $userchart->container() !!}

{{__('adminstaticwords.RecentlyRegisteredUsers')}}
@foreach(App\User::where('is_admin','!=','1')->orderBy('id','DESC')->take(6)->get() as $user)

{{ $user->name }}

{{__('adminstaticwords.UserAvatar')}}
@endforeach
@endsection @section('custom-script') {!! $userchart->script() !!} {!! $activesubsriber->script() !!} {!! $piechart->script() !!} {!! $doughnutchart->script() !!} @endsection