|
2 | 2 |
|
3 | 3 | namespace Novius\LaravelNovaPageManager\Models; |
4 | 4 |
|
5 | | -use Eloquent; |
6 | 5 | use Illuminate\Database\Eloquent\Builder; |
7 | 6 | use Illuminate\Database\Eloquent\Casts\Attribute; |
8 | 7 | use Illuminate\Database\Eloquent\Model; |
|
28 | 27 | /** |
29 | 28 | * Class Page |
30 | 29 | * |
31 | | - * @property string title |
32 | | - * @property string slug |
33 | | - * @property string locale |
34 | | - * @property string template |
35 | | - * @property int parent_id |
36 | | - * @property int locale_parent_id |
| 30 | + * @property string $title |
| 31 | + * @property string $slug |
| 32 | + * @property string $locale |
| 33 | + * @property string $template |
| 34 | + * @property int $parent_id |
| 35 | + * @property int $locale_parent_id |
37 | 36 | * @property PublicationStatus $publication_status |
38 | 37 | * @property Carbon|null $published_first_at |
39 | 38 | * @property Carbon|null $published_at |
40 | 39 | * @property Carbon|null $expired_at |
41 | | - * @property string preview_token |
42 | | - * @property array extras |
43 | | - * @property Carbon created_at |
44 | | - * @property Carbon updated_at |
| 40 | + * @property string $preview_token |
| 41 | + * @property array $extras |
| 42 | + * @property Carbon $created_at |
| 43 | + * @property Carbon $updated_at |
45 | 44 | * @property-read string|null $seo_robots |
46 | 45 | * @property-read string|null $seo_title |
47 | 46 | * @property-read string|null $seo_description |
|
63 | 62 | * @method static Builder|Page query() |
64 | 63 | * @method static Builder|Page withLocale(?string $locale) |
65 | 64 | * |
66 | | - * @mixin Eloquent |
| 65 | + * @mixin Model |
67 | 66 | */ |
68 | 67 | class Page extends Model |
69 | 68 | { |
|
0 commit comments