1
0
mirror of https://koodu.h-i.works/projects/thebadspace synced 2025-05-06 14:41:02 -05:00
thebadspace/resources/views/back/start.blade.php
ro b7e2bbb334 updated laravel, fixed composer
At some point the composer json got jacked, so that needed to be fixed
to update laravel to the latest.

also started putting in pieces for sources management through the UI
2025-04-17 23:47:16 -06:00

18 lines
546 B
PHP

@extends('frame')
@section('title', 'Den | Start')
@section('main-content')
<section>
<article>
<h2>Hey {{$handle}} </h2>
<a href="/den/you">Edit Your Account</a><br />
@if($role==0)
<a href="/den/locations">Manage Locations</a><br />
<a href="/den/member">Manage Members</a><br />
<a href="/den/sources">Manage Sources</a><br />
@endif
</article>
</section>
@endsection