mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
29 lines
427 B
PHP
29 lines
427 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Todo extends Model
|
|
{
|
|
/*
|
|
* Table name
|
|
*/
|
|
protected $table = 'todos';
|
|
|
|
/*
|
|
* Fillable fields for protecting mass assignment vulnerability
|
|
*/
|
|
protected $fillable = [
|
|
'name',
|
|
'user_id',
|
|
];
|
|
|
|
/*
|
|
* Eloquent attribute casting
|
|
*/
|
|
protected $casts = [
|
|
'complete' => 'boolean',
|
|
];
|
|
}
|