validate([ 'memo' => 'nullable|string|max:191', 'code' => 'required|string|alpha_dash|max:36|min:4|unique:vouchers', 'uses' => 'required|numeric|max:2147483647|min:1', 'credits' => 'required|numeric|between:0,99999999', 'expires_at' => 'nullable|multiple_date_format:d-m-Y H:i:s,d-m-Y|after:now|before:10 years', ]); Voucher::create($request->except('_token')); return redirect()->route('admin.vouchers.index')->with('success', 'voucher has been created!'); } /** * Display the specified resource. * * @param Voucher $voucher * @return Response */ public function show(Voucher $voucher) { // } /** * Show the form for editing the specified resource. * * @param Voucher $voucher * @return Application|Factory|View */ public function edit(Voucher $voucher) { return view('admin.vouchers.edit', [ 'voucher' => $voucher ]); } /** * Update the specified resource in storage. * * @param Request $request * @param Voucher $voucher * @return RedirectResponse */ public function update(Request $request, Voucher $voucher) { $request->validate([ 'memo' => 'nullable|string|max:191', 'code' => "required|string|alpha_dash|max:36|min:4|unique:vouchers,code,{$voucher->id}", 'uses' => 'required|numeric|max:2147483647|min:1', 'credits' => 'required|numeric|between:0,99999999', 'expires_at' => 'nullable|multiple_date_format:d-m-Y H:i:s,d-m-Y|after:now|before:10 years', ]); $voucher->update($request->except('_token')); return redirect()->route('admin.vouchers.index')->with('success', 'voucher has been updated!'); } /** * Remove the specified resource from storage. * * @param Voucher $voucher * @return RedirectResponse */ public function destroy(Voucher $voucher) { $voucher->delete(); return redirect()->back()->with('success', 'voucher has been removed!'); } public function users(Voucher $voucher) { return view('admin.vouchers.users', [ 'voucher' => $voucher ]); } /** * @param Request $request * @return JsonResponse * @throws ValidationException */ public function redeem(Request $request) { #general validations $request->validate([ 'code' => 'required|exists:vouchers,code' ]); #get voucher by code $voucher = Voucher::where('code', '=', $request->input('code'))->firstOrFail(); #extra validations if ($voucher->getStatus() == 'USES_LIMIT_REACHED') throw ValidationException::withMessages([ 'code' => 'This voucher has reached the maximum amount of uses' ]); if ($voucher->getStatus() == 'EXPIRED') throw ValidationException::withMessages([ 'code' => 'This voucher has expired' ]); if (!$request->user()->vouchers()->where('id', '=', $voucher->id)->get()->isEmpty()) throw ValidationException::withMessages([ 'code' => 'You already redeemed this voucher code' ]); if ($request->user()->credits + $voucher->credits >= 99999999) throw ValidationException::withMessages([ 'code' => "You can't redeem this voucher because you would exceed the " . CREDITS_DISPLAY_NAME . " limit" ]); #redeem voucher $voucher->redeem($request->user()); event(new UserUpdateCreditsEvent($request->user())); return response()->json([ 'success' => "{$voucher->credits} " . CREDITS_DISPLAY_NAME . " have been added to your balance!" ]); } public function usersDataTable(Voucher $voucher) { $users = $voucher->users(); return datatables($users) ->editColumn('name', function (User $user) { return '' . $user->name . ''; }) ->addColumn('credits', function (User $user) { return ' ' . $user->credits(); }) ->addColumn('last_seen', function (User $user) { return $user->last_seen ? $user->last_seen->diffForHumans() : ''; }) ->rawColumns(['name', 'credits', 'last_seen']) ->make(); } public function dataTable() { $query = Voucher::query(); return datatables($query) ->addColumn('actions', function (Voucher $voucher) { return '
' . csrf_field() . ' ' . method_field("DELETE") . '
'; }) ->addColumn('status', function (Voucher $voucher) { $color = 'success'; if ($voucher->getStatus() != 'VALID') $color = 'danger'; return '' . $voucher->getStatus() . ''; }) ->editColumn('uses', function (Voucher $voucher) { return "{$voucher->used} / {$voucher->uses}"; }) ->editColumn('credits', function (Voucher $voucher) { return number_format($voucher->credits, 2, '.', ''); }) ->editColumn('expires_at', function (Voucher $voucher) { if (!$voucher->expires_at) return ""; return $voucher->expires_at ? $voucher->expires_at->diffForHumans() : ''; }) ->editColumn('code', function (Voucher $voucher) { return "{$voucher->code}"; }) ->rawColumns(['actions', 'code', 'status']) ->make(); } }