Course.php 253 B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Course extends Model
  5. {
  6. /**
  7. * The attributes that are mass assignable.
  8. *
  9. * @var list<string>
  10. */
  11. protected $fillable = [
  12. 'name',
  13. ];
  14. }