This commit is contained in:
frederikpyt 2020-06-29 11:42:38 +02:00
commit 7641deaeef
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class ContactController extends Controller
$contact = Contact::query()->paginate($request->input("limit", 20)); $contact = Contact::query()->paginate($request->input("limit", 20));
return Response::detect("contacts.index", [ "contact" => $contact]); return Response::detect("contacts.index", [ "contacts" => $contact]);
} }
/** /**