Files
construprogress/resources/views/projects/index.blade.php
T

12 lines
413 B
PHP
Raw Normal View History

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