@extends('admin.layouts.master')
@push('css')
@endpush
@section('title', __('static.dashboard'))
@section('content')
{{ __('static.widgets.hello') }}, {{ getCurrentUser()->name }}
@foreach ($widgets as $widget)
{!! $widget['callback']($widget['data']) !!}
@endforeach
@endsection
@push('scripts')
@endpush