This commit is contained in:
Neerholt 2020-06-29 12:36:07 +02:00
parent 79d6ffe52d
commit f61f67d0bc
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,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]);
}
/**