| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class foo extends Model
- {
- use HasFactory;
- /**
- * The attributes that are mass assignable.
- *
- * @var array<int, string>
- */
- public $timestamps = false;
- protected $fillable = [
- 'name',
- 'email',
- 'fk_tests_id',
- ];
- /**
- * The attributes that should be cast.
- *
- * @var array<string, string>
- */
- protected $casts = [
- 'email_verified_at' => 'datetime',
- ];
- }
|