1234567891011121314151617181920 |
- <?php
- declare(strict_types=1);
- namespace App\Models\Schemas;
- /**
- * \App\Models\Schemas\NoteSchema
- *
- * @property int $id
- * @property string $content
- * @property \Illuminate\Support\Carbon|null $created_at
- * @property \Illuminate\Support\Carbon|null $updated_at
- * @property \Illuminate\Support\Carbon|null $deleted_at
- *
- * @mixin \Eloquent
- */
- abstract class NoteSchema extends BaseSchema
- {
- }
|