@extends('layouts.dashboard') @section('content') {{-- Styles --}} {{-- Body --}} @foreach ($panels as $panel) {{-- Section Cards --}} {{-- Title --}} {{ $panel['title'] }} {{-- Content --}} @foreach ($panel['buttons'] as $btn) @php [$mainClass, $iconClass] = explode(' ', $btn['class']); @endphp {{ $btn['label'] }} @endforeach @endforeach @endsection @section('footer') @include('shared.components.footer.basic-footer') @endsection