Fortune.php 185 B

1234567891011121314
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Models;
  4. use App\Models\Model;
  5. class Fortune extends Model
  6. {
  7. protected ?string $table = 'Fortune';
  8. public bool $timestamps = false;
  9. }