19 lines
367 B
PHP
19 lines
367 B
PHP
@extends('adminlte::page')
|
|
|
|
@section('title', 'Dashboard')
|
|
|
|
@section('content_header')
|
|
<h1>Dashboard</h1>
|
|
@stop
|
|
|
|
@section('content')
|
|
<div id="app">Test</div>
|
|
@stop
|
|
|
|
@section('css')
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css">
|
|
@stop
|
|
|
|
@section('js')
|
|
<script src="/js/file-manager.js"></script>
|
|
@stop |