def show
    @invoice_line = InvoiceLine.find_by id: params[:id]
    if @invoice_line
      render json: { invoice_line: @invoice_line }
    else