151 lines
5.1 KiB
PHP
151 lines
5.1 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Controllers\Admin;
|
||
|
|
|
||
|
|
use App\Models\Currency;
|
||
|
|
use Illuminate\Http\Request;
|
||
|
|
use App\Http\Controllers\Controller;
|
||
|
|
|
||
|
|
class AcnooCurrencyController extends Controller
|
||
|
|
{
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
$this->middleware('permission:currencies-create')->only('create', 'store');
|
||
|
|
$this->middleware('permission:currencies-read')->only('index');
|
||
|
|
$this->middleware('permission:currencies-update')->only('edit', 'update', 'default');
|
||
|
|
$this->middleware('permission:currencies-delete')->only('destroy');
|
||
|
|
}
|
||
|
|
|
||
|
|
public function index(Request $request)
|
||
|
|
{
|
||
|
|
$currencies = Currency::orderBy('is_default', 'desc')->orderBy('status', 'desc')->when($request->search, function ($q) use ($request) {
|
||
|
|
$q->where(function ($q) use ($request) {
|
||
|
|
$q->where('name', 'like', '%' . $request->search . '%')
|
||
|
|
->orWhere('country_name', 'like', '%' . $request->search . '%')
|
||
|
|
->orWhere('code', 'like', '%' . $request->search . '%')
|
||
|
|
->orWhere('symbol', 'like', '%' . $request->search . '%');
|
||
|
|
});
|
||
|
|
})->latest()->paginate($request->per_page ?? 20)->appends($request->query());
|
||
|
|
|
||
|
|
if ($request->ajax()) {
|
||
|
|
return response()->json([
|
||
|
|
'data' => view('admin.currencies.datas', compact('currencies'))->render()
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
|
||
|
|
return view('admin.currencies.index', compact('currencies'));
|
||
|
|
}
|
||
|
|
|
||
|
|
public function create()
|
||
|
|
{
|
||
|
|
$countries = base_path('lang/countrylist.json');
|
||
|
|
$countries = json_decode(file_get_contents($countries), true);
|
||
|
|
return view('admin.currencies.create', compact('countries'));
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
public function store(Request $request)
|
||
|
|
{
|
||
|
|
$request->validate([
|
||
|
|
'name' => 'required|string|unique:currencies',
|
||
|
|
'country_name' => 'nullable|string',
|
||
|
|
'code' => 'required|string|unique:currencies',
|
||
|
|
'rate' => 'nullable|numeric',
|
||
|
|
'symbol' => 'nullable|string',
|
||
|
|
'position' => 'nullable|string',
|
||
|
|
'status' => 'required|integer',
|
||
|
|
'is_default' => 'nullable|boolean',
|
||
|
|
]);
|
||
|
|
|
||
|
|
Currency::create($request->all());
|
||
|
|
|
||
|
|
return response()->json([
|
||
|
|
'message' => __('Currency Created successfully'),
|
||
|
|
'redirect' => route('admin.currencies.index')
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
public function edit(Currency $currency)
|
||
|
|
{
|
||
|
|
$countries = base_path('lang/countrylist.json');
|
||
|
|
$countries = json_decode(file_get_contents($countries), true);
|
||
|
|
return view('admin.currencies.edit', compact('currency', 'countries'));
|
||
|
|
}
|
||
|
|
|
||
|
|
public function update(Request $request, Currency $currency)
|
||
|
|
{
|
||
|
|
$request->validate([
|
||
|
|
'name' => 'required|string|unique:currencies,name,' . $currency->id,
|
||
|
|
'country_name' => 'nullable|string',
|
||
|
|
'code' => 'required|string|unique:currencies,code,' . $currency->id,
|
||
|
|
'rate' => 'nullable|numeric',
|
||
|
|
'symbol' => 'nullable|string',
|
||
|
|
'position' => 'nullable|string',
|
||
|
|
'status' => 'required|integer',
|
||
|
|
'is_default' => 'nullable|boolean',
|
||
|
|
]);
|
||
|
|
|
||
|
|
$currency->update($request->all());
|
||
|
|
|
||
|
|
return response()->json([
|
||
|
|
'message' => __('Currency updated successfully'),
|
||
|
|
'redirect' => route('admin.currencies.index')
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
|
||
|
|
public function default($id)
|
||
|
|
{
|
||
|
|
$currency = Currency::find($id);
|
||
|
|
|
||
|
|
if ($currency) {
|
||
|
|
Currency::where('id', '!=', $id)->update(['is_default' => 0]);
|
||
|
|
$currency->update(['is_default' => 1]);
|
||
|
|
cache()->forget('default_currency');
|
||
|
|
}
|
||
|
|
|
||
|
|
return redirect()->route('admin.currencies.index')->with('message', __('Default currency activated successfully'));
|
||
|
|
}
|
||
|
|
|
||
|
|
public function destroy(Currency $currency)
|
||
|
|
{
|
||
|
|
if ($currency->is_default) {
|
||
|
|
return response()->json([
|
||
|
|
'message' => __('You cannot delete it because it is default currency'),
|
||
|
|
'redirect' => route('admin.currencies.index')
|
||
|
|
], 400);
|
||
|
|
}
|
||
|
|
|
||
|
|
$currency->delete();
|
||
|
|
|
||
|
|
return response()->json([
|
||
|
|
'message' => __('Currency deleted successfully'),
|
||
|
|
'redirect' => route('admin.currencies.index')
|
||
|
|
], 200);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
public function deleteAll(Request $request)
|
||
|
|
{
|
||
|
|
$default_currency_id = Currency::where('is_default', 1)->value('id');
|
||
|
|
|
||
|
|
if (count($request->ids) === 1 && in_array($default_currency_id, $request->ids)) {
|
||
|
|
return response()->json([
|
||
|
|
'message' => __('You cannot delete the default currency.'),
|
||
|
|
'redirect' => route('admin.currencies.index')
|
||
|
|
], 400);
|
||
|
|
}
|
||
|
|
|
||
|
|
$idsToDelete = array_filter($request->ids, function ($id) use ($default_currency_id) {
|
||
|
|
return $id != $default_currency_id;
|
||
|
|
});
|
||
|
|
|
||
|
|
Currency::whereIn('id', $idsToDelete)->delete();
|
||
|
|
|
||
|
|
return response()->json([
|
||
|
|
'message' => __('Selected currencies deleted successfully.'),
|
||
|
|
'redirect' => route('admin.currencies.index')
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
}
|