Viewing file: TaxController.php (2.48 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace App\Http\Controllers\Back;
use App\{ Models\Tax, Http\Requests\TaxRequest, Http\Controllers\Controller };
class TaxController extends Controller { /** * Constructor Method. * * Setting Authentication */ public function __construct() { $this->middleware('auth:admin'); $this->middleware('adminlocalize'); }
/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { return view('back.tax.index',[ 'datas' => Tax::orderBy('id','desc')->get() ]); }
/** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { return view('back.tax.create'); }
/** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(TaxRequest $request) {
Tax::create($request->all()); return redirect()->route('back.tax.index')->withSuccess(__('New Tax Added Successfully.')); }
/** * Show the form for editing the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function edit(Tax $tax) { return view('back.tax.edit',compact('tax')); }
/** * Change the status for editing the specified resource. * * @param int $id * @param int $status * @return \Illuminate\Http\Response */ public function status($id,$status) { Tax::find($id)->update(['status' => $status]); return redirect()->route('back.tax.index')->withSuccess(__('Status Updated Successfully.')); }
/** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param int $id * @return \Illuminate\Http\Response */ public function update(TaxRequest $request, Tax $tax) { $tax->update($request->all()); return redirect()->route('back.tax.index')->withSuccess(__('Tax Updated Successfully.')); }
/** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy(Tax $tax) { $tax->delete(); return redirect()->route('back.tax.index')->withSuccess(__('Tax Deleted Successfully.')); } }
|