id)->paginate(25); return view('app.patient.company-client.customers', compact('patient', 'customers')); } public function customer(Request $request, Client $patient, $slug){ $customer = Customer::where('slug', $slug)->first(); return view('app.patient.company-client.customer', compact('patient', 'customer')); } }