laravel-alt/resources/views/admin/dashboard.blade.php
Nasir Hossain Nishad c14d4e4d28 Initial commit
2024-09-23 18:41:36 +06:00

21 lines
429 B
PHP

@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')
{{-- Add here extra stylesheets --}}
{{-- <link rel="stylesheet" href="/css/admin_custom.css"> --}}
@stop
@section('js')
<script> console.log("Hi, I'm using the Laravel-AdminLTE package!"); </script>
@stop