1@extends('adminlte::page')
2
3@section('title', 'Dashboard')
4
5@section('content_header')
6<h1>Dashboard</h1>
7@stop
8
9@section('content')
10<p>Welcome to this beautiful admin panel.</p>
11@stop
12
13@section('css')
14<link rel="stylesheet" href="/css/admin_custom.css">
15@stop
16
17@section('js')
18<script>
19 console.log('Hi!');
20</script>
21@stop