13 lines
266 B
PHP
13 lines
266 B
PHP
|
|
@extends('admin.layouts.app')
|
||
|
|
|
||
|
|
@section('page-title', 'Dashboard')
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
<div class="card shadow-sm">
|
||
|
|
<div class="card-body">
|
||
|
|
<h4>Welcome to the Admin Dashboard</h4>
|
||
|
|
<p>Here you can manage all system modules.</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
@endsection
|