130 lines
3.3 KiB
PHP
130 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* BrandController.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author TL <mengwb@guangda.work>
|
|
* @created 2022-07-27 21:17:04
|
|
* @modified 2022-07-27 21:17:04
|
|
*/
|
|
|
|
namespace Beike\Admin\Http\Controllers;
|
|
|
|
use Beike\Models\Brand;
|
|
use Beike\Repositories\BrandRepo;
|
|
use Exception;
|
|
use Illuminate\Http\Request;
|
|
|
|
class BrandController extends Controller
|
|
{
|
|
/**
|
|
* 显示品牌列表
|
|
* @param Request $request
|
|
* @return mixed
|
|
*/
|
|
public function index(Request $request)
|
|
{
|
|
$brands = BrandRepo::list($request->only('name', 'first', 'status'));
|
|
$data = [
|
|
'brands' => $brands,
|
|
];
|
|
$data = hook_filter('admin.brand.index.data', $data);
|
|
if ($request->expectsJson()) {
|
|
return json_success(trans('common.success'), $data);
|
|
}
|
|
|
|
return view('admin::pages.brands.index', $data);
|
|
}
|
|
|
|
/**
|
|
* 创建品牌
|
|
*
|
|
* @param Request $request
|
|
* @return array
|
|
*/
|
|
public function store(Request $request): array
|
|
{
|
|
$requestData = $request->all();
|
|
$data = [
|
|
'request_data' => $requestData,
|
|
];
|
|
|
|
hook_action('admin.brand.store.before', $data);
|
|
$brand = BrandRepo::create($requestData);
|
|
hook_action('admin.brand.store.after', ['brand' => $brand, 'request_data' => $requestData]);
|
|
|
|
return json_success(trans('common.created_success'), $brand);
|
|
}
|
|
|
|
/**
|
|
* @param Request $request
|
|
* @param Brand $brand
|
|
* @return array
|
|
* @throws Exception
|
|
*/
|
|
public function update(Request $request, Brand $brand): array
|
|
{
|
|
$requestData = $request->all();
|
|
$data = [
|
|
'brand_id' => $brand,
|
|
'request_data' => $requestData,
|
|
];
|
|
hook_action('admin.brand.update.before', $data);
|
|
$brand = BrandRepo::update($brand, $requestData);
|
|
hook_action('admin.brand.update.after', $data);
|
|
|
|
return json_success(trans('common.updated_success'), $brand);
|
|
}
|
|
|
|
/**
|
|
* @param Request $request
|
|
* @param Brand $brand
|
|
* @return array
|
|
*/
|
|
public function destroy(Request $request, Brand $brand): array
|
|
{
|
|
hook_action('admin.brand.destroy.before', $brand);
|
|
BrandRepo::delete($brand);
|
|
hook_action('admin.brand.destroy.after', $brand);
|
|
|
|
return json_success(trans('common.deleted_success'));
|
|
}
|
|
|
|
/**
|
|
* @param Request $request
|
|
* @return array
|
|
*/
|
|
public function autocomplete(Request $request): array
|
|
{
|
|
$brands = BrandRepo::autocomplete($request->get('name') ?? '', 0);
|
|
|
|
return json_success(trans('common.get_success'), $brands);
|
|
}
|
|
|
|
/**
|
|
* @param int $id
|
|
* @return array
|
|
*/
|
|
public function name(int $id): array
|
|
{
|
|
$name = BrandRepo::getName($id);
|
|
|
|
return json_success(trans('common.get_success'), $name);
|
|
}
|
|
|
|
/**
|
|
* 根据商品ID批量获取商品名称
|
|
*
|
|
* @param Request $request
|
|
* @return array
|
|
*/
|
|
public function getNames(Request $request): array
|
|
{
|
|
$ids = explode(',', $request->get('ids'));
|
|
$name = BrandRepo::getNames($ids);
|
|
|
|
return json_success(trans('common.get_success'), $name);
|
|
}
|
|
}
|