/** * Display a listing of the resource. * * @return Response */ public function index() { $contacts = Contacts::latest()->get(); return view('contacts.index', compact('contacts')); }