20 lines
321 B
PHP
Executable File
20 lines
321 B
PHP
Executable File
@extends('adminlte::page')
|
|
|
|
@section('title', 'Dashboard')
|
|
|
|
@section('content_header')
|
|
<h1>Dashboard</h1>
|
|
@stop
|
|
|
|
@section('content')
|
|
<p>Welcome to this beautiful admin panel.</p>
|
|
@stop
|
|
|
|
@section('css')
|
|
<link rel="stylesheet" href="/css/admin_custom.css">
|
|
@stop
|
|
|
|
@section('js')
|
|
<script>
|
|
</script>
|
|
@stop |