%PDF-1.4 %âãÏÓ 191 0 obj <> endobj 403 Forbidden
One Hat Cyber Team
  • Dir : ~/home/mshshams/www/app/Http/Controllers/User/
  • Edit File: UserDashboardController.php
    '; return $html; } public function get_boost_sub_category(Request $request) { $category_id = $request->category_id; $sub_cats = BoostSubCategory::where('category_id', $category_id)->get(); $html = ''; $html .= ''; if($sub_cats){ foreach($sub_cats as $category){ $html .= ''; } } return $html; } public function get_boost_sub_category_price(Request $request) { $id = $request->sub_category; $sub_cat = BoostSubCategory::find($id); return ['cost'=>$sub_cat->cost, 'notice'=>$sub_cat->notice]; } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { // } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { // } /** * Display the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function show($id) { // } /** * Show the form for editing the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function edit($id) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param int $id * @return \Illuminate\Http\Response */ public function update(Request $request, $id) { // } /** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy($id) { // } }