CategorySchema.php 846 B

123456789101112131415161718192021222324252627
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Models\Schemas;
  4. /**
  5. * \App\Models\Schemas\CategorySchema
  6. *
  7. * @property int $id
  8. * @property string $name
  9. * @property string $slug
  10. * @property string $keywords
  11. * @property string $description
  12. * @property int $sort
  13. * @property int $pid
  14. * @property \Illuminate\Support\Carbon|null $created_at
  15. * @property \Illuminate\Support\Carbon|null $updated_at
  16. * @property \Illuminate\Support\Carbon|null $deleted_at
  17. * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Article[] $articles
  18. * @property-read string $url
  19. *
  20. * @mixin \Eloquent
  21. */
  22. abstract class CategorySchema extends BaseSchema
  23. {
  24. }