def create
    @loan_item = LoanItem.new(loan_item_params)
    respond_to do |format|
      if @loan_item.save
        format.html {redirect_back(fallback_location: (request.referer || root_path), notice: 'Loan item was successfully created.')}