環境:Windows10,XAMPP,HeidiSQL
データベース:テーブル名:staffs カラム:name,password,updated_at,created_at
laravelでフォーム送信してデータベースに登録したい。
一回目は実際に登録できましたが、現状できなくなってしまいました。
【登録完了致しました。】とも出ますし、エラーメッセージも何もでません。
HeidiSQLを接続しなおしたり、更新ボタンを押しても追加されていません。
【ルート】
<?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ Route::get('/shop', 'shopController@index'); Route::post('/shop/create','shopController@create'); Route::post('/shop/create','shopController@post'); Route::get('/shop/list','shopController@list'); Route::get('/top','shopController@top');
【コントローラー】
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\staff; use Validator; use App\Http\Requests\ShopRequest; use Illuminate\Support\Facades\DB; class shopController extends Controller { public function index() { return view('staff_add',['msg' => 'フォームを入力してください。']); } public function create(Request $request) { $data =new staff(); $data->name = $request->name; $data->password = $request->pass; $data->save(); return redirect('/shop'); } public function post(Request $request) { $validate_rule = [ 'name' => 'required', 'pass' => 'required', ]; $this->validate($request,$validate_rule); return view('staff_add',['msg' => '登録完了致しました。']); } public function list(Request $request) { $items =DB::select('select * from staffs'); return view('staff_list',['items' => $items]); } public function top() { return view('top'); } }
【モデル】
<?php namespace App; use Illuminate\Database\Eloquent\Model; class staff extends Model { protected $table ="staffs"; }
【ブレード】
<!DOCtYPE html> <html> <head> <meta charset="UTF-8"> <title>ショップ</title> </head> <body> スタッフ追加<br /> <br /> <p>{{$msg}}</p> @if(count($errors)>0) <div> <ul> @foreach($errors->all() as $error) <li>{{$error}}</li> @endforeach </ul> </div> @endif <form method="post" action="/shop/create"> <table> @csrf <tr><th>スタッフ名を入力してください。</th><td> <input type="text" name="name" style="width:200px" value="{{old('name')}}"></td></th> <tr><th>パスワードを入力してください。</th><td> <input type="password" name="pass" style="width:200px" value="{{old('pass')}}"></td></th> <tr><th></th><td><input type="submit" value="OK"></td></tr> </table> </form> <tr><th></th><td><button onclick="history.back()">戻る</button></td></tr> <a href="/top">業務管理システム</a> </body> </html>
ご教授宜しくお願いいたします。
ルーティングはどうなっているのでしょうか。
しかし、validate₍₎のあと何もせずに「完了しました」で良いのでしょうか。
回答1件
あなたの回答
tips
プレビュー