v1.3.0 - Implemented DataTables

This commit is contained in:
frederikpyt
2020-09-18 10:04:33 +02:00
parent 2a2511daf4
commit 9096f64569
52 changed files with 34435 additions and 445 deletions
@@ -29,7 +29,7 @@ class ContactController extends Controller
public function index(Request $request)
{
$contact = Contact::query()->paginate(20);
$contact = Contact::query()->get();
return Response::detect("contacts.index", [ "contacts" => $contact]);
}