私はlaravel 5.4に新しいので、私はこれらの2つの関数を1つのビューで呼び出す必要があります。 ここに2つのコントローラがあります。これは、エラーがここにきているので、ここでLaravel 5 Route Error
public function index()
{
$items = trainingprogramedetails::all()->last();
return view('programesession/index',compact('items'));
}
public function list()
{
$lists = trainingprogramedetails::all();
return view('programesession/index',compact('lists'));
}
は
<thead>
<th>Name</th>
<th>Data</th>
</thead>
<tbody>
<tr>
<td>Date</td>
<td>{{ $items->date_of_programe }}</td>
</tr>
<tr>
<td>Time</td>
<td>{{ $items->time }}</td>
</tr>
<tr>
<td>Venue</td>
<td>{{ $items->venue }}</td>
</tr>
</tbody>
</table>
<table class="table table-striped">
<thead>
<th>Trainee Programe ID</th>
<th>Presenter Name</th>
<th>Division</th>
<th>Date</th>
</thead>
<tbody>
@foreach($lists as $item)
<tr>
<td>{{ $item->training_programe_id }}</td>
<td>{{ $item->presenter_name }}</td>
<td>{{ $item->division }}</td>
<td>{{ $item->date }}</td>
</tr>
@endforeach
</tbody>
</table>
は、ここに私の敗走である
Route::group(['middleware' => ['web']], function() {
Route::resource('/programelist', 'TrainingProgrameSeassion');
});
これを解決するためにお手伝いできますか?私はあなたのようなあなたのビューを更新する必要があると思う
を使用する必要がありますそして、なぜあなたはそれがルートの問題であると思いますか?あなたはエラーメッセージを読んだことがありますか? – Amarnasan
私はlaravel.whateverの新しい場合は、これは私の学部のプロジェクトのためです私はlaravel.iを使用してそれを行う必要がありますそれはルートissue.if私はそれが質問としてそれを知っていない知っている – Dasun