Travel Guide Frontend Backend
This commit is contained in:
parent
e6cc042aee
commit
0857a34766
681 changed files with 6680 additions and 1689 deletions
|
|
@ -25,6 +25,8 @@ use Illuminate\Database\Eloquent\Model;
|
|||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CMSAuthor whereName($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CMSAuthor whereUpdatedAt($value)
|
||||
* @mixin \Eloquent
|
||||
* @property string|null $description
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CMSAuthor whereDescription($value)
|
||||
*/
|
||||
class CMSAuthor extends Model
|
||||
{
|
||||
|
|
@ -33,6 +35,7 @@ class CMSAuthor extends Model
|
|||
protected $table = 'c_m_s_authors';
|
||||
|
||||
protected $fillable = [
|
||||
'name'
|
||||
'name',
|
||||
'description',
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue