123456789101112131415161718192021222324252627 |
- <?php
- declare(strict_types=1);
- namespace App\Models\Schemas;
- /**
- * \App\Models\Schemas\CategorySchema
- *
- * @property int $id
- * @property string $name
- * @property string $slug
- * @property string $keywords
- * @property string $description
- * @property int $sort
- * @property int $pid
- * @property \Illuminate\Support\Carbon|null $created_at
- * @property \Illuminate\Support\Carbon|null $updated_at
- * @property \Illuminate\Support\Carbon|null $deleted_at
- * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Article[] $articles
- * @property-read string $url
- *
- * @mixin \Eloquent
- */
- abstract class CategorySchema extends BaseSchema
- {
- }
|