@extends('backend.layouts.app') @section('title', 'Dashboard') @push('styles') @endpush @section('content')
@if ($dashboardItems->isNotEmpty())
@foreach ($dashboardItems as $item)
{!! \App\Helpers\DashboardHelper::render($item->content) !!}
@endforeach
@else @endif
@endsection