/** * Display a listing of the resource. * * @return Response */ public function index() { return view('admin', ['customers' => Customer::select('id', 'name', 'phoneMob', 'address')->orderBy('name')->get(), 'items' => MenuItem::all(), 'stats' => Order::adminStats(), 'customerCount' => Customer::all()->count()]); }
public function index() { return view('customer', ['customers' => Customer::select('id', 'name', 'phoneMob', 'address')->orderBy('name')->get()]); }