cms-laravel/resources/views/dashboard.blade.php

16 lines
445 B
PHP

@extends('layouts.app')
@section('title', 'Dashboard')
@section('content')
@livewire('main-breadcrumbs', ['pageRoutes' => [
['path' => '/dashboard', 'name' => 'Dashboard'],
['path' => '/my-profile', 'name' => 'Profile'],
], 'root' => true])
<div class="p-0" style="background: #fff;">
<h1>Welcome to the Dashboard</h1>
<p>This is the main content area for the dashboard.</p>
</div>
@endsection