dimanche 26 août 2018

Unable to show data in Laravel

I am adding a feature in chatter package and now am unable to show data on my view this is the code of controller ChatterreplyController.php

public function show(Chatterreply $chatterreply ,$id)
{
    $chatterreplies = Chatterreply::where('chatter_post_id',$id)->get();
    return view('chatter::discussion', compact('chatterreplies'));
    echo "<pre>"; print_r('$chatterreplies'); die;
}

this is the view page discussion.blade.php

@foreach($chatterreplies as $chatterreply)
    
@endforeach



from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/2MLFNi3
via IFTTT

Aucun commentaire:

Enregistrer un commentaire