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
18 lines
No EOL
546 B
PHP
18 lines
No EOL
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 |