12 lines
412 B
PHP
12 lines
412 B
PHP
<x-app-layout>
|
|
<div class="py-12">
|
|
<div class="flex justify-between items-center mb-6">
|
|
<h1 class="text-2xl font-bold">{{ __('Projects') }}</h1>
|
|
@can('create projects')
|
|
<a href="{{ route('projects.create') }}" class="btn btn-primary">+ {{ __('New Project') }}</a>
|
|
@endcan
|
|
</div>
|
|
<livewire:project-list />
|
|
</div>
|
|
</x-app-layout>
|