diff options
| author | Sam Light <samlight1994@gmail.com> | 2026-02-10 00:21:51 +0000 |
|---|---|---|
| committer | Sam Light <samlight1994@gmail.com> | 2026-02-10 00:21:51 +0000 |
| commit | eaf1b346cd5ad6bde03389c17b2f9df3f851ad8f (patch) | |
| tree | 3a7fa9943e9da8702ffd3bff8a24ef4f2ffd28b4 /workbench/app/Models/Category.php | |
| parent | ad1c06ee1819b3512e2443d5cbe06199a0ae9bad (diff) | |
Model docblocks
Diffstat (limited to 'workbench/app/Models/Category.php')
| -rw-r--r-- | workbench/app/Models/Category.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/workbench/app/Models/Category.php b/workbench/app/Models/Category.php index 8e30c31..28b08de 100644 --- a/workbench/app/Models/Category.php +++ b/workbench/app/Models/Category.php @@ -5,8 +5,16 @@ namespace Workbench\App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; +use Illuminate\Support\Carbon; use Workbench\Database\Factories\CategoryFactory; +/** + * @property int $id + * @property string $name + * @property Carbon|null $created_at + * @property Carbon|null $updated_at + * @property Carbon|null $deleted_at + */ class Category extends Model { /** |
