2026-05-07 23:31:33 +02:00
|
|
|
<x-app-layout>
|
|
|
|
|
<div class="py-12">
|
|
|
|
|
<div class="flex justify-between items-center mb-6">
|
2026-05-09 23:14:48 +02:00
|
|
|
<h1 class="text-2xl font-bold">{{ __('Projects') }}</h1>
|
2026-05-07 23:31:33 +02:00
|
|
|
@can('create projects')
|
2026-05-09 23:14:48 +02:00
|
|
|
<a href="{{ route('projects.create') }}" class="btn btn-primary">+ {{ __('New Project') }}</a>
|
2026-05-07 23:31:33 +02:00
|
|
|
@endcan
|
|
|
|
|
</div>
|
|
|
|
|
<livewire:project-list />
|
|
|
|
|
</div>
|
2026-05-09 23:14:48 +02:00
|
|
|
</x-app-layout>
|