13 lines
358 B
PHP
13 lines
358 B
PHP
@php use Illuminate\Support\Facades\Auth; @endphp
|
|
@php $school = Auth::user()->school; @endphp
|
|
<x-layout.app>
|
|
<x-slot:page_title>My School</x-slot:page_title>
|
|
<div class="space-y-10 divide-y divide-gray-900/10">
|
|
|
|
@if($school)
|
|
<a href="/schools/{{ $school->id }}/edit">Edit my school</a>
|
|
@endif
|
|
|
|
</div>
|
|
</x-layout.app>
|