feat: site admin pages

This commit is contained in:
Frankie B 2023-07-16 21:01:30 +01:00
commit 7d75d20ac6
No known key found for this signature in database
15 changed files with 1378 additions and 52 deletions

View file

@ -0,0 +1,9 @@
@extends('layouts.default-admin')
@section('title', 'Page Title')
@section('description', 'Page description goes here')
@php
$user = auth()->user();
@endphp
@section('content')
<p>You are logged in as {{ $user->name }} ({{ $user->email }})</p>
@stop