2026-05-27 01:33:27 +02:00
|
|
|
<div>
|
|
|
|
|
@if(session('message'))
|
2026-06-17 09:32:07 +02:00
|
|
|
<div class="alert alert-success mb-4">
|
|
|
|
|
<x-heroicon-o-check-circle class="w-5 h-5" />
|
2026-05-27 01:33:27 +02:00
|
|
|
{{ session('message') }}
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
|
|
|
|
|
2026-06-17 09:32:07 +02:00
|
|
|
<div class="flex items-center justify-between mb-4">
|
|
|
|
|
<div>
|
|
|
|
|
<h2 class="text-2xl font-bold text-gray-800">{{ __('Company Management') }}</h2>
|
|
|
|
|
<p class="text-sm text-gray-500 mt-1">{{ __('Manage the companies that participate in projects') }}</p>
|
2026-05-27 01:33:27 +02:00
|
|
|
</div>
|
2026-06-17 09:32:07 +02:00
|
|
|
<a href="{{ route('companies.create') }}" class="btn btn-primary btn-sm gap-1" wire:navigate>
|
|
|
|
|
<x-heroicon-o-plus class="w-4 h-4" />
|
|
|
|
|
{{ __('New Company') }}
|
|
|
|
|
</a>
|
2026-05-27 01:33:27 +02:00
|
|
|
</div>
|
2026-06-17 09:32:07 +02:00
|
|
|
|
|
|
|
|
<livewire:company-table />
|
2026-06-16 18:05:53 +02:00
|
|
|
</div>
|