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