TRF Certest first commit
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
@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
|
||||
Reference in New Issue
Block a user