0
이 ErrorException 같은 마사지 오류가 있습니다. 정의되지 않은 변수 : posts (보기 : C : \ xampp \ htdocs \ TA \ resources \ views \ petani \ index.blade.php). 어떻게 해결할 수 있을까요?ErrorException 정의되지 않은 변수
컨트롤러 :
public function index(){
$post = Desa::all();
return view('petani.index',compact ('desas'));
}
경로 : Route::get('petani', '[email protected]');
지수 :
<?php
$no = 1;
?>
@foreach ($posts as $post)
<td>{{$no++}}</td>
<td>{{$post->nama}}</td>
<td>
<button type="button" class="btn"><a href="{{ URL::to('coba/test/'.$post->id.'/edit') }}" >Edit</a></button>
{{ Form::open(['url' => 'coba/test/'.$post->id, 'method' => 'DELETE']) }}
{{ Form::button('delete', ['type' => 'submit', 'class' => 'btn']) }}
{{ Form::close() }}
</td>
</tr>
@endforeach
을 갈 수 있어요 질문. 비평하거나 저자의 설명을 요청하려면 게시물 아래에 의견을 남겨 둡니다. - [리뷰에서] (리뷰/저품절 포스트/17817294) – Neo
귀하의 답변이 맞는지는 모르겠지만 정확한 내용 일 수 있습니다. 문맥이 아프지 않을 것이라고 생각합니다. 예를 들어, 왜''압축 (' 'desas')'하지 않고''' ''=> $ post ''가 문제를 어떻게 풀지 않는가? –
개의 게시물을 [ 'posts'=> $ post] 데이터베이스의 평균 테이블에 저장 하시겠습니까? @KenS. – Atmojo211