] * @param Request $request * @param int $accessoryUserId * @param string $backto */ public function create($accessoryUserId = null, $backto = null) : View | RedirectResponse { if (is_null($accessory_user = DB::table('accessories_checkout')->find($accessoryUserId))) { return redirect()->route('accessories.index')->with('error', trans('admin/accessories/message.not_found')); } $accessory = Accessory::find($accessory_user->accessory_id); //based on what the accessory is checked out to the target redirect option will be displayed accordingly. $target_option = match ($accessory_user->assigned_type) { 'App\Models\Asset' => trans('admin/hardware/form.redirect_to_type', ['type' => trans('general.asset')]), 'App\Models\Location' => trans('admin/hardware/form.redirect_to_type', ['type' => trans('general.location')]), default => trans('admin/hardware/form.redirect_to_type', ['type' => trans('general.user')]), }; $this->authorize('checkin', $accessory); return view('accessories/checkin', compact('accessory', 'target_option'))->with('backto', $backto); } /** * Check in the item so that it can be checked out again to someone else * * @uses Accessory::checkin_email() to determine if an email can and should be sent * @author [A. Gianotto] [] * @param null $accessoryCheckoutId * @param string $backto */ public function store(Request $request, $accessoryCheckoutId = null, $backto = null) : RedirectResponse { if (is_null($accessory_checkout = AccessoryCheckout::find($accessoryCheckoutId))) { return redirect()->route('accessories.index')->with('error', trans('admin/accessories/message.does_not_exist')); } $accessory = Accessory::find($accessory_checkout->accessory_id); session()->put('checkedInFrom', $accessory_checkout->assigned_to); session()->put('checkout_to_type', match ($accessory_checkout->assigned_type) { 'App\Models\User' => 'user', 'App\Models\Location' => 'location', 'App\Models\Asset' => 'asset', }); $this->authorize('checkin', $accessory); $checkin_hours = date('H:i:s'); $checkin_at = date('Y-m-d H:i:s'); if ($request->filled('checkin_at')) { $checkin_at = $request->input('checkin_at').' '.$checkin_hours; } // Was the accessory updated? if ($accessory_checkout->delete()) { event(new CheckoutableCheckedIn($accessory, $accessory_checkout->assignedTo, auth()->user(), $request->input('note'), $checkin_at)); session()->put(['redirect_option' => $request->get('redirect_option')]); return redirect()->to(Helper::getRedirectOption($request, $accessory->id, 'Accessories'))->with('success', trans('admin/accessories/message.checkin.success')); } // Redirect to the accessory management page with error return redirect()->route('accessories.index')->with('error', trans('admin/accessories/message.checkin.error')); } }