Laravel笔记
数据库初始化
配置
创建数据库表文件
创建数据库表模型
<?php
namespace App\Models;
use Eloquent;
class Admin extends Eloquent
{
protected $table = 'admin_list';
/*
* The attributes that are mass assignable.
*
* @var array
*/
// 插入数据时可更改的字段
protected $fillable = [
'username', 'password'
];
/*
* The attributes that should be hidden for arrays.
*
* @var array
*/
// 取出数据时隐藏的字段
protected $hidden = [
'password'
];
}使用前端脚手架开发后端视图页面
Last updated