13 lines
185 B
PHP
13 lines
185 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Room extends Model
|
|
{
|
|
protected $fillable = [
|
|
'name', 'capacity', 'arrangement', 'description'
|
|
];
|
|
}
|