19 lines
300 B
PHP
19 lines
300 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PhotoComment extends Model
|
|
{
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'commentor_name',
|
|
'commentor_email',
|
|
'comment_text'
|
|
];
|
|
} |