] * @param Request $request * @param int $accessoryUserId * @param string $backto * @return View * @internal param int $accessoryId * @throws \Illuminate\Auth\Access\AuthorizationException */ public function create($accessoryUserId = null, $backto = null) { // Check if the accessory exists if (is_null($accessory_user = DB::table('accessories_users')->find($accessoryUserId))) { // Redirect to the accessory management page with error return redirect()->route('accessories.index')->with('error', trans('admin/accessories/message.not_found')); } $accessory = Accessory::find($accessory_user->accessory_id); $this->authorize('checkin', $accessory); return view('accessories/checkin', compact('accessory'))->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 $accessoryUserId * @param string $backto * @return Redirect * @throws \Illuminate\Auth\Access\AuthorizationException * @internal param int $accessoryId */ public function store(Request $request, $accessoryUserId = null, $backto = null) { // Check if the accessory exists if (is_null($accessory_user = DB::table('accessories_users')->find($accessoryUserId))) { // Redirect to the accessory management page with error return redirect()->route('accessories.index')->with('error', trans('admin/accessories/message.does_not_exist')); } $accessory = Accessory::find($accessory_user->accessory_id); $this->authorize('checkin', $accessory); $checkin_at = date('Y-m-d'); if ($request->filled('checkin_at')) { $checkin_at = $request->input('checkin_at'); } // Was the accessory updated? if (DB::table('accessories_users')->where('id', '=', $accessory_user->id)->delete()) { $return_to = e($accessory_user->assigned_to); event(new CheckoutableCheckedIn($accessory, User::find($return_to), Auth::user(), $request->input('note'), $checkin_at)); return redirect()->route('accessories.show', $accessory->id)->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')); } }