singleloginsystem/app/Models/ConnectionProtocol.php
= 9b6af8135d refactor: remove unused UI components and factories for cleanup
- Deleted obsolete components (`Choices`, `Input`, `ListItem`, `Table`) and trait (`HasAttributeHelpers`) from the `App\View\Components` namespace.
- Removed `ConnectedAppFactory` as it is no longer utilized in the current workflow.
2026-05-16 09:44:54 +00:00

18 lines
263 B
PHP

<?php
declare(strict_types=1);
namespace App\Models;
use Illuminate\Database\Eloquent\{Model, SoftDeletes};
/**
* @property int $id
* @property string $name
* @property string $slug
*/
final class ConnectionProtocol extends Model
{
use SoftDeletes;
}