2023-06-01 12:04:31 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Setting\Contracts;
|
|
|
|
|
2024-08-01 10:25:48 +02:00
|
|
|
interface Viewable
|
2023-06-01 12:04:31 +02:00
|
|
|
{
|
2024-08-01 11:17:49 +02:00
|
|
|
public static function url(): string;
|
|
|
|
|
|
|
|
public static function title(): string;
|
|
|
|
|
|
|
|
public static function group(): string;
|
|
|
|
|
2023-06-01 12:04:31 +02:00
|
|
|
/**
|
2024-08-01 11:17:49 +02:00
|
|
|
* @return array<string, mixed>
|
2023-06-01 12:04:31 +02:00
|
|
|
*/
|
2024-08-01 11:17:49 +02:00
|
|
|
public function viewData(): array;
|
2023-06-01 12:04:31 +02:00
|
|
|
}
|