orderBy('updated_at', 'desc'); if ($request->q != '') { $query->where('username', 'like', "%$request->q%") ->orWhere('comment', 'like', "%$request->q%") ->orWhere('profile', 'like', "%$request->q%"); } return inertia('Voucher/Index', [ 'query' => $query->paginate(), ]); } public function create() { return inertia('Voucher/Form'); } public function store(Request $request) { $request->validate([ 'name' => 'nullable|string', 'description' => 'nullable|string', 'location_id' => 'required|exists:locations,id', 'username' => 'required|string', 'password' => 'required|string', 'discount' => 'required|numeric', 'display_price' => 'required|numeric', 'quota' => 'required|string', 'profile' => 'required|string', 'comment' => 'required|string', 'expired' => 'required|numeric', 'expired_unit' => 'required|string', ]); Voucher::create([ 'name' => $request->name, 'description' => $request->description, 'location_id' => $request->location_id, 'username' => $request->username, 'password' => $request->password, 'discount' => $request->discount, 'display_price' => $request->display_price, 'quota' => $request->quota, 'profile' => $request->profile, 'comment' => $request->comment, 'expired' => $request->expired, 'expired_unit' => $request->expired_unit, ]); return redirect()->route('voucher.index') ->with('message', ['type' => 'success', 'message' => 'Item has beed saved']); } public function edit(Voucher $voucher) { return inertia('Voucher/Form', [ 'voucher' => $voucher, ]); } public function update(Request $request, Voucher $voucher) { $request->validate([ 'name' => 'nullable|string', 'description' => 'nullable|string', 'location_id' => 'required|exists:locations,id', 'username' => 'required|string', 'password' => 'required|string', 'discount' => 'required|numeric', 'display_price' => 'required|numeric', 'quota' => 'required|string', 'profile' => 'required|string', 'comment' => 'required|string', 'expired' => 'required|numeric', 'expired_unit' => 'required|string', ]); $voucher->update([ 'name' => $request->name, 'description' => $request->description, 'location_id' => $request->location_id, 'username' => $request->username, 'password' => $request->password, 'discount' => $request->discount, 'display_price' => $request->display_price, 'quota' => $request->quota, 'profile' => $request->profile, 'comment' => $request->comment, 'expired' => $request->expired, ]); return redirect()->route('voucher.index') ->with('message', ['type' => 'success', 'message' => 'Item has beed updated']); } public function destroy(Voucher $voucher) { $voucher->delete(); return redirect()->route('voucher.index') ->with('message', ['type' => 'success', 'message' => 'Item has beed deleted']); } public function form_import() { return inertia('Voucher/Import'); } public function import(Request $request) { $request->validate([ 'script' => 'required|string', 'location_id' => 'required|exists:locations,id', 'discount' => 'required|numeric', 'display_price' => 'required|numeric', 'expired' => 'required|numeric', 'expired_unit' => 'required|string', ]); $batchId = Str::ulid(); $vouchers = GeneralService::script_parser($request->script); DB::beginTransaction(); foreach ($vouchers as $voucher) { Voucher::create([ 'location_id' => $request->location_id, 'username' => $voucher['username'], 'password' => $voucher['password'], 'discount' => $request->discount, 'display_price' => $request->display_price, 'quota' => $voucher['quota'], 'profile' => $voucher['profile'], 'comment' => $voucher['comment'], 'expired' => $request->expired, 'expired_unit' => $request->expired_unit, 'batch_id' => $batchId, ]); } DB::commit(); return redirect()->route('voucher.index') ->with('message', ['type' => 'success', 'message' => 'Items has beed saved']); } }