🎉 First commit

This commit is contained in:
2026-02-20 08:40:00 +01:00
commit 07a3b3a874
206 changed files with 22834 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
<?php
namespace App\Filament\Pages;
use App\Services\LogisticsService;
use Filament\Pages\Page;
use Filament\Support\Icons\Heroicon;
class Journaux extends Page
{
protected static string|\BackedEnum|null $navigationIcon = Heroicon::OutlinedBookOpen;
protected static ?string $navigationLabel = 'Journaux';
protected static ?string $title = 'Journaux';
protected static ?int $navigationSort = 4;
protected string $view = 'filament.pages.journaux';
public string $select = '';
public int $results = 10;
public string $type = '';
public array $data = [];
public ?array $metadata = null;
public ?string $errorMessage = null;
public function searchJournaux(): void
{
try {
$service = app(LogisticsService::class);
$params = array_filter([
'select' => $this->select,
'results' => $this->results,
'TYPE' => $this->type,
]);
$response = $service->jnlList($params);
$this->data = $response['data'] ?? [];
$this->metadata = $response['metadata'] ?? null;
$this->errorMessage = $response['error'] ?? null;
} catch (\Throwable $e) {
$this->errorMessage = $e->getMessage();
$this->data = [];
}
}
}