36 lines
866 B
PHP
36 lines
866 B
PHP
@extends('layouts.app')
|
|
|
|
@section('page-title', __('Dashboard'))
|
|
@section('page-heading', __('Dashboard'))
|
|
|
|
@section('breadcrumbs')
|
|
<li class="breadcrumb-item active">
|
|
@lang('Dashboard')
|
|
</li>
|
|
@stop
|
|
|
|
@section('content')
|
|
@include('partials.messages')
|
|
|
|
<div class="row">
|
|
@foreach (\Vanguard\Plugins\Vanguard::availableWidgets(auth()->user()) as $widget)
|
|
@if ($widget->width)
|
|
<div class="col-md-{{ $widget->width }}">
|
|
@endif
|
|
{!! app()->call([$widget, 'render']) !!}
|
|
@if($widget->width)
|
|
</div>
|
|
@endif
|
|
@endforeach
|
|
</div>
|
|
|
|
@stop
|
|
|
|
@section('scripts')
|
|
@foreach (\Vanguard\Plugins\Vanguard::availableWidgets(auth()->user()) as $widget)
|
|
@if (method_exists($widget, 'scripts'))
|
|
{!! app()->call([$widget, 'scripts']) !!}
|
|
@endif
|
|
@endforeach
|
|
@stop
|