@use('App\Models\Project')
{{ config('app.name', 'Jira Clone') }}
@vite(['resources/css/app.css', 'resources/js/app.js'])
/
Create
{{ auth()->user()->name }}
{{ auth()->user()->email }}
@if(auth()->user()->activePlan())
{{ auth()->user()->activePlan()->name }} Plan
@endif
Profile & Settings
Subscription
@if(auth()->user()->hasRole('admin'))
Admin Console
@endif
@csrf
Sign out
{{ $slot }}
@livewireScripts