I recently started learning Laravel and I am still trying to figure it out. So, please bear in mind this before judging me :)
I am trying to find a way to rewrite this:
<a href=""></a>
with a method, so I wouldn't have to do Client::find()
inside of the view.
I tried doing this:
private function getClientName($id) { $clientName = Client::find($id)->name; return view('campaigns.index', compact('clientName')); }
... in the controller and called the method inside of the view, but it didn't work, and I can't think of anything else right now.
Any suggestions? Thanks!
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire