This commit is contained in:
frederikpyt
2020-06-29 13:07:28 +02:00
5 changed files with 43 additions and 10 deletions
@@ -72,8 +72,8 @@ class ContactController extends Controller
*/
public function edit($id)
{
$contacts = Contact::find($id);
return Response::detect("contacts.edit", ["contact" => $contacts]);
$contact = Contact::find($id);
return Response::detect("contacts.edit", ["contact" => $contact]);
}
/**