摘要:
Laravel根目录可以访问,非根目录就会出现404 页面找不到的错误Laravel根目录可以访问 Route::get('/', 'HomeController@showWelcome');非根目录就会出现404 页面找不到的错误,如下Route::get('user', 'UserControl... 阅读全文
摘要:
通过数据模型层M public function userAdd() { //通过数组插入数据 $user_data=[ 'username'=>'asd','age'=>34];$this::fill($user_data);$this::save(); }... 阅读全文