今回DBから取ってきた値をviewに表示するようにしたいのですが
下記のようなエラーが出てしまいました。
Undefined variable: tasks (View: C:\Users\Owner\Desktop\Sample\resources\views\sample.blade.php)
変数が未定義ということですが、変数の渡し方が違うのでしょうか?
表示方法など調べたのですが、表示させることが出来ませんでした。
お手数ですが、ご教授いただけないでしょうか?
よろしくお願い致します。
Controller
1<?php 2 3namespace App\Http\Controllers; 4 5use Illuminate\Http\Request; 6use App\Task; 7 8class TodoController extends Controller 9{ 10 public function show() 11 { 12 $tasks = Task::all(); 13 return view('sample', ['tasks' => $tasks]); 14 } 15 public function add(Request $request) 16 { 17 $task = new Task(); 18 $task->to = $request->input('task'); 19 $task->save(); 20 return view('sample'); 21 } 22} 23
view
1@extends('layouts.admin') 2@section('title', 'サンプル') 3@section('content') 4 <div class="container"> 5 <h1>TodoList</h1> 6 <div class="list"> 7 @foreach ($tasks as $to) 8 <table> 9 <tr> 10 <th>やること</th> 11 </tr> 12 <tr> 13 <td>{{ $to->to }}</td> 14 </tr> 15 </table> 16 @endforeach 17 <form id="todo-form" method="post"> 18 @csrf 19 <label for="task">タスクを追加</label> 20 <input type="text" name="task"> 21 <input type="submit"> 22 </form> 23 </div> 24 </div> 25@endsection 26
migration
1<?php 2 3use Illuminate\Database\Migrations\Migration; 4use Illuminate\Database\Schema\Blueprint; 5use Illuminate\Support\Facades\Schema; 6 7class CreateTasksTable extends Migration 8{ 9 /** 10 * Run the migrations. 11 * 12 * @return void 13 */ 14 public function up() 15 { 16 Schema::create('tasks', function (Blueprint $table) { 17 $table->bigIncrements('id'); 18 $table->timestamps(); 19 $table->string('to'); 20 }); 21 } 22 23 /** 24 * Reverse the migrations. 25 * 26 * @return void 27 */ 28 public function down() 29 { 30 Schema::dropIfExists('tasks'); 31 } 32} 33
SQL
1+----+---------------------+---------------------+--------+ 2| id | created_at | updated_at | to | 3+----+---------------------+---------------------+--------+ 4| 1 | 2020-08-02 05:58:52 | 2020-08-02 05:58:52 | 読書 | 5+----+---------------------+---------------------+--------+
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/03 07:20