Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anders
2020-06-29 12:56:14 +02:00
2 changed files with 3 additions and 3 deletions
@@ -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]);
}
/**