- Removed redundant custom collections and `Wireable` trait from DTOs. - Replaced custom collection properties with `DataCollection`. - Updated role management views to use improved components, including avatars and toggle. - Refined Blade directives for scoped slots. - Minor cleanup in configuration and dependencies.
13 lines
196 B
PHP
13 lines
196 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Data\Ui\ManageRoles;
|
|
|
|
use Spatie\LaravelData\Data;
|
|
|
|
final class ServiceData extends Data
|
|
{
|
|
public function __construct(public string $name) {}
|
|
}
|