NoteSchema.php 455 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Models\Schemas;
  4. /**
  5. * \App\Models\Schemas\NoteSchema
  6. *
  7. * @property int $id
  8. * @property string $content
  9. * @property \Illuminate\Support\Carbon|null $created_at
  10. * @property \Illuminate\Support\Carbon|null $updated_at
  11. * @property \Illuminate\Support\Carbon|null $deleted_at
  12. *
  13. * @mixin \Eloquent
  14. */
  15. abstract class NoteSchema extends BaseSchema
  16. {
  17. }