14 lines
305 B
PHP
14 lines
305 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\AlertDeliveryResource\Pages;
|
|
|
|
use App\Filament\Resources\AlertDeliveryResource;
|
|
use Filament\Resources\Pages\ViewRecord;
|
|
|
|
class ViewAlertDelivery extends ViewRecord
|
|
{
|
|
protected static string $resource = AlertDeliveryResource::class;
|
|
}
|