57 lines
1.5 KiB
PHP
57 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* TaxRateController.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-07-26 20:00:13
|
|
* @modified 2022-07-26 20:00:13
|
|
*/
|
|
|
|
namespace Beike\Admin\Http\Controllers;
|
|
|
|
use Beike\Admin\Http\Requests\TaxRateRequest;
|
|
use Beike\Admin\Repositories\TaxRateRepo;
|
|
use Beike\Models\Region;
|
|
use Illuminate\Http\Request;
|
|
|
|
class TaxRateController
|
|
{
|
|
public function index()
|
|
{
|
|
$data = [
|
|
'tax_rates' => TaxRateRepo::getList(),
|
|
'regions' => Region::all(),
|
|
];
|
|
|
|
return view('admin::pages.tax_rates.index', $data);
|
|
}
|
|
|
|
public function store(TaxRateRequest $request)
|
|
{
|
|
$requestData = json_decode($request->getContent(), true);
|
|
$taxRate = TaxRateRepo::createOrUpdate($requestData);
|
|
$taxRate->load('region');
|
|
|
|
return json_success(trans('common.created_success'), $taxRate);
|
|
}
|
|
|
|
public function update(TaxRateRequest $request, int $taxRateId)
|
|
{
|
|
$requestData = json_decode($request->getContent(), true);
|
|
$requestData['id'] = $taxRateId;
|
|
$taxRate = TaxRateRepo::createOrUpdate($requestData);
|
|
$taxRate->load('region');
|
|
|
|
return json_success(trans('common.updated_success'), $taxRate);
|
|
}
|
|
|
|
public function destroy(Request $request, int $taxRateId)
|
|
{
|
|
TaxRateRepo::deleteById($taxRateId);
|
|
|
|
return json_success(trans('common.deleted_success'));
|
|
}
|
|
}
|