├── .bowerrc ├── .env.travis ├── .htaccess ├── .php_cs.dist ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── app ├── Commands │ └── Command.php ├── Console │ ├── Commands │ │ ├── CalculatePayouts.php │ │ ├── ChargeRenewalInvoices.php │ │ ├── CheckData.php │ │ ├── CreateLuisData.php │ │ ├── CreateTestData.php │ │ ├── ExportMigrations.php │ │ ├── InitLookup.php │ │ ├── MakeClass.php │ │ ├── MakeModule.php │ │ ├── MobileLocalization.php │ │ ├── PruneData.php │ │ ├── RemoveOrphanedDocuments.php │ │ ├── ResetData.php │ │ ├── SendRecurringInvoices.php │ │ ├── SendReminders.php │ │ ├── SendRenewalInvoices.php │ │ ├── TestOFX.php │ │ ├── UpdateKey.php │ │ └── stubs │ │ │ ├── api-controller.stub │ │ │ ├── auth-provider.stub │ │ │ ├── command.stub │ │ │ ├── composer.stub │ │ │ ├── controller-plain.stub │ │ │ ├── controller.stub │ │ │ ├── createrequest.stub │ │ │ ├── datatable.stub │ │ │ ├── event.stub │ │ │ ├── job.stub │ │ │ ├── json.stub │ │ │ ├── lang.stub │ │ │ ├── listener.stub │ │ │ ├── mail.stub │ │ │ ├── middleware.stub │ │ │ ├── migration │ │ │ ├── add.stub │ │ │ ├── create.stub │ │ │ ├── delete.stub │ │ │ ├── drop.stub │ │ │ └── plain.stub │ │ │ ├── model.stub │ │ │ ├── notification.stub │ │ │ ├── policy.stub │ │ │ ├── presenter.stub │ │ │ ├── provider.stub │ │ │ ├── repository.stub │ │ │ ├── request.stub │ │ │ ├── route-provider.stub │ │ │ ├── routes.stub │ │ │ ├── scaffold │ │ │ ├── config.stub │ │ │ └── provider.stub │ │ │ ├── seeder.stub │ │ │ ├── start.stub │ │ │ ├── transformer.stub │ │ │ ├── updaterequest.stub │ │ │ ├── views.stub │ │ │ └── views │ │ │ └── master.stub │ └── Kernel.php ├── Constants.php ├── Constants │ └── Domain.php ├── Events │ ├── ClientWasArchived.php │ ├── ClientWasCreated.php │ ├── ClientWasDeleted.php │ ├── ClientWasRestored.php │ ├── ClientWasUpdated.php │ ├── CreditWasArchived.php │ ├── CreditWasCreated.php │ ├── CreditWasDeleted.php │ ├── CreditWasRestored.php │ ├── Event.php │ ├── ExpenseWasArchived.php │ ├── ExpenseWasCreated.php │ ├── ExpenseWasDeleted.php │ ├── ExpenseWasRestored.php │ ├── ExpenseWasUpdated.php │ ├── InvoiceInvitationWasEmailed.php │ ├── InvoiceInvitationWasViewed.php │ ├── InvoiceItemsWereCreated.php │ ├── InvoiceItemsWereUpdated.php │ ├── InvoiceWasArchived.php │ ├── InvoiceWasCreated.php │ ├── InvoiceWasDeleted.php │ ├── InvoiceWasEmailed.php │ ├── InvoiceWasRestored.php │ ├── InvoiceWasUpdated.php │ ├── PaymentCompleted.php │ ├── PaymentFailed.php │ ├── PaymentWasArchived.php │ ├── PaymentWasCreated.php │ ├── PaymentWasDeleted.php │ ├── PaymentWasRefunded.php │ ├── PaymentWasRestored.php │ ├── PaymentWasVoided.php │ ├── ProductWasCreated.php │ ├── ProductWasDeleted.php │ ├── ProductWasUpdated.php │ ├── ProjectWasDeleted.php │ ├── ProposalWasDeleted.php │ ├── QuoteInvitationWasApproved.php │ ├── QuoteInvitationWasEmailed.php │ ├── QuoteInvitationWasViewed.php │ ├── QuoteItemsWereCreated.php │ ├── QuoteItemsWereUpdated.php │ ├── QuoteWasArchived.php │ ├── QuoteWasCreated.php │ ├── QuoteWasDeleted.php │ ├── QuoteWasEmailed.php │ ├── QuoteWasRestored.php │ ├── QuoteWasUpdated.php │ ├── SubdomainWasRemoved.php │ ├── SubdomainWasUpdated.php │ ├── TaskWasArchived.php │ ├── TaskWasCreated.php │ ├── TaskWasDeleted.php │ ├── TaskWasRestored.php │ ├── TaskWasUpdated.php │ ├── UserLoggedIn.php │ ├── UserSettingsChanged.php │ ├── UserSignedUp.php │ ├── VendorWasArchived.php │ ├── VendorWasCreated.php │ ├── VendorWasDeleted.php │ ├── VendorWasRestored.php │ └── VendorWasUpdated.php ├── Exceptions │ └── Handler.php ├── Handlers │ ├── Commands │ │ └── .gitkeep │ ├── Events │ │ └── .gitkeep │ └── InvoiceEventHandler.php ├── Http │ ├── Controllers │ │ ├── .gitkeep │ │ ├── AccountApiController.php │ │ ├── AccountController.php │ │ ├── AccountGatewayController.php │ │ ├── ActivityController.php │ │ ├── AppController.php │ │ ├── Auth │ │ │ ├── AuthController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ └── ResetPasswordController.php │ │ ├── BankAccountController.php │ │ ├── BaseAPIController.php │ │ ├── BaseController.php │ │ ├── BlueVineController.php │ │ ├── BotController.php │ │ ├── CalendarController.php │ │ ├── ClientApiController.php │ │ ├── ClientAuth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── PasswordController.php │ │ │ └── ResetPasswordController.php │ │ ├── ClientController.php │ │ ├── ClientPortalController.php │ │ ├── ClientPortalProposalController.php │ │ ├── ContactApiController.php │ │ ├── Controller.php │ │ ├── CreditApiController.php │ │ ├── CreditController.php │ │ ├── DashboardApiController.php │ │ ├── DashboardController.php │ │ ├── DocumentAPIController.php │ │ ├── DocumentController.php │ │ ├── ExpenseApiController.php │ │ ├── ExpenseCategoryApiController.php │ │ ├── ExpenseCategoryController.php │ │ ├── ExpenseController.php │ │ ├── ExportController.php │ │ ├── HomeController.php │ │ ├── ImportController.php │ │ ├── IntegrationController.php │ │ ├── InvoiceApiController.php │ │ ├── InvoiceController.php │ │ ├── Migration │ │ │ └── StepsController.php │ │ ├── NinjaController.php │ │ ├── OnlinePaymentController.php │ │ ├── PaymentApiController.php │ │ ├── PaymentController.php │ │ ├── PaymentTermApiController.php │ │ ├── PaymentTermController.php │ │ ├── ProductApiController.php │ │ ├── ProductController.php │ │ ├── ProjectApiController.php │ │ ├── ProjectController.php │ │ ├── ProposalCategoryController.php │ │ ├── ProposalController.php │ │ ├── ProposalSnippetController.php │ │ ├── ProposalTemplateController.php │ │ ├── QuoteApiController.php │ │ ├── QuoteController.php │ │ ├── RecurringExpenseController.php │ │ ├── RecurringInvoiceController.php │ │ ├── ReportController.php │ │ ├── SelfUpdateController.php │ │ ├── SubscriptionController.php │ │ ├── TaskApiController.php │ │ ├── TaskController.php │ │ ├── TaskKanbanController.php │ │ ├── TaxRateApiController.php │ │ ├── TaxRateController.php │ │ ├── TimeTrackerController.php │ │ ├── TokenController.php │ │ ├── TwoFactorController.php │ │ ├── UserApiController.php │ │ ├── UserController.php │ │ ├── VendorApiController.php │ │ └── VendorController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── ApiCheck.php │ │ ├── Authenticate.php │ │ ├── Cors.php │ │ ├── DatabaseLookup.php │ │ ├── DuplicateSubmissionCheck.php │ │ ├── EligibleForMigration.php │ │ ├── EncryptCookies.php │ │ ├── PermissionsRequired.php │ │ ├── QueryLogging.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── StartupCheck.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── ClientRequest.php │ │ ├── ContactRequest.php │ │ ├── CreateBankAccountRequest.php │ │ ├── CreateClientRequest.php │ │ ├── CreateContactRequest.php │ │ ├── CreateCreditRequest.php │ │ ├── CreateCustomerRequest.php │ │ ├── CreateDocumentRequest.php │ │ ├── CreateExpenseCategoryRequest.php │ │ ├── CreateExpenseRequest.php │ │ ├── CreateInvoiceAPIRequest.php │ │ ├── CreateInvoiceRequest.php │ │ ├── CreateOnlinePaymentRequest.php │ │ ├── CreatePaymentAPIRequest.php │ │ ├── CreatePaymentRequest.php │ │ ├── CreatePaymentTermRequest.php │ │ ├── CreateProductRequest.php │ │ ├── CreateProjectRequest.php │ │ ├── CreateProposalCategoryRequest.php │ │ ├── CreateProposalRequest.php │ │ ├── CreateProposalSnippetRequest.php │ │ ├── CreateProposalTemplateRequest.php │ │ ├── CreateRecurringExpenseRequest.php │ │ ├── CreateTaskRequest.php │ │ ├── CreateTaxRateRequest.php │ │ ├── CreateVendorRequest.php │ │ ├── CreditRequest.php │ │ ├── CustomerRequest.php │ │ ├── DeleteVendorRequest.php │ │ ├── DocumentRequest.php │ │ ├── EntityRequest.php │ │ ├── ExpenseCategoryRequest.php │ │ ├── ExpenseRequest.php │ │ ├── InvoiceRequest.php │ │ ├── MigrationAuthRequest.php │ │ ├── MigrationCompaniesRequest.php │ │ ├── MigrationEndpointRequest.php │ │ ├── MigrationTypeRequest.php │ │ ├── PaymentRequest.php │ │ ├── PaymentTermRequest.php │ │ ├── ProductRequest.php │ │ ├── ProjectRequest.php │ │ ├── ProposalCategoryRequest.php │ │ ├── ProposalRequest.php │ │ ├── ProposalSnippetRequest.php │ │ ├── ProposalTemplateRequest.php │ │ ├── QuoteRequest.php │ │ ├── RecurringExpenseRequest.php │ │ ├── RegisterRequest.php │ │ ├── Request.php │ │ ├── SaveClientPortalSettings.php │ │ ├── SaveEmailSettings.php │ │ ├── TaskRequest.php │ │ ├── TaxRateRequest.php │ │ ├── UpdateAccountRequest.php │ │ ├── UpdateClientRequest.php │ │ ├── UpdateContactRequest.php │ │ ├── UpdateCreditRequest.php │ │ ├── UpdateDocumentRequest.php │ │ ├── UpdateExpenseCategoryRequest.php │ │ ├── UpdateExpenseRequest.php │ │ ├── UpdateInvoiceAPIRequest.php │ │ ├── UpdateInvoiceRequest.php │ │ ├── UpdatePaymentRequest.php │ │ ├── UpdatePaymentTermRequest.php │ │ ├── UpdateProductRequest.php │ │ ├── UpdateProjectRequest.php │ │ ├── UpdateProposalCategoryRequest.php │ │ ├── UpdateProposalRequest.php │ │ ├── UpdateProposalSnippetRequest.php │ │ ├── UpdateProposalTemplateRequest.php │ │ ├── UpdateRecurringExpenseRequest.php │ │ ├── UpdateTaskRequest.php │ │ ├── UpdateTaxRateRequest.php │ │ ├── UpdateUserRequest.php │ │ ├── UpdateVendorRequest.php │ │ ├── UserRequest.php │ │ ├── ValidateTwoFactorRequest.php │ │ └── VendorRequest.php │ └── ViewComposers │ │ ├── AppLanguageComposer.php │ │ ├── ClientPortalHeaderComposer.php │ │ ├── ProposalComposer.php │ │ └── TranslationComposer.php ├── Jobs │ ├── Client │ │ └── GenerateStatementData.php │ ├── ConvertInvoiceToUbl.php │ ├── ConvertProposalToPdf.php │ ├── DownloadInvoices.php │ ├── ExportReportResults.php │ ├── GenerateCalendarEvents.php │ ├── GenerateProjectChartData.php │ ├── ImportData.php │ ├── Job.php │ ├── LoadPostmarkHistory.php │ ├── LoadPostmarkStats.php │ ├── PurgeAccountData.php │ ├── PurgeClientData.php │ ├── ReactivatePostmarkEmail.php │ ├── RunReport.php │ ├── SendInvoiceEmail.php │ ├── SendNotificationEmail.php │ ├── SendPaymentEmail.php │ └── SendPushNotification.php ├── Libraries │ ├── CurlUtils.php │ ├── DateUtils.php │ ├── HTMLUtils.php │ ├── HistoryUtils.php │ ├── OFX.php │ ├── Skype │ │ ├── ButtonCard.php │ │ ├── CarouselCard.php │ │ ├── HeroCard.php │ │ ├── InvoiceCard.php │ │ ├── InvoiceItemCard.php │ │ └── SkypeResponse.php │ ├── Utils.php │ ├── entity.php │ └── lib_autolink.php ├── Listeners │ ├── ActivityListener.php │ ├── AnalyticsListener.php │ ├── CreditListener.php │ ├── DNSListener.php │ ├── ExpenseListener.php │ ├── HandleUserLoggedIn.php │ ├── HandleUserSettingsChanged.php │ ├── HandleUserSignedUp.php │ ├── HistoryListener.php │ ├── InvoiceListener.php │ ├── NotificationListener.php │ ├── QuoteListener.php │ ├── SubscriptionListener.php │ └── TaskListener.php ├── Models │ ├── Account.php │ ├── AccountEmailSettings.php │ ├── AccountGateway.php │ ├── AccountGatewaySettings.php │ ├── AccountGatewayToken.php │ ├── AccountToken.php │ ├── Activity.php │ ├── Affiliate.php │ ├── BalanceAffecting.php │ ├── Bank.php │ ├── BankAccount.php │ ├── BankSubaccount.php │ ├── Client.php │ ├── Company.php │ ├── Contact.php │ ├── Country.php │ ├── Credit.php │ ├── Currency.php │ ├── DateFormat.php │ ├── DatetimeFormat.php │ ├── DbServer.php │ ├── Document.php │ ├── EntityModel.php │ ├── Expense.php │ ├── ExpenseCategory.php │ ├── Font.php │ ├── Frequency.php │ ├── Gateway.php │ ├── GatewayType.php │ ├── Industry.php │ ├── Invitation.php │ ├── Invoice.php │ ├── InvoiceDesign.php │ ├── InvoiceItem.php │ ├── InvoiceStatus.php │ ├── Language.php │ ├── License.php │ ├── LookupAccount.php │ ├── LookupAccountToken.php │ ├── LookupCompany.php │ ├── LookupContact.php │ ├── LookupInvitation.php │ ├── LookupModel.php │ ├── LookupProposalInvitation.php │ ├── LookupUser.php │ ├── OwnedByClientTrait.php │ ├── PasswordReset.php │ ├── Payment.php │ ├── PaymentLibrary.php │ ├── PaymentMethod.php │ ├── PaymentStatus.php │ ├── PaymentTerm.php │ ├── PaymentType.php │ ├── Product.php │ ├── Project.php │ ├── Proposal.php │ ├── ProposalCategory.php │ ├── ProposalInvitation.php │ ├── ProposalSnippet.php │ ├── ProposalTemplate.php │ ├── RecurringExpense.php │ ├── ScheduledReport.php │ ├── SecurityCode.php │ ├── Size.php │ ├── Subscription.php │ ├── Task.php │ ├── TaskStatus.php │ ├── TaxRate.php │ ├── Theme.php │ ├── Timezone.php │ ├── Traits │ │ ├── ChargesFees.php │ │ ├── GeneratesNumbers.php │ │ ├── HasCustomMessages.php │ │ ├── HasLogo.php │ │ ├── HasRecurrence.php │ │ ├── Inviteable.php │ │ ├── PresentsInvoice.php │ │ ├── SendsEmails.php │ │ └── SerialisesDeletedModels.php │ ├── User.php │ ├── UserAccount.php │ ├── Vendor.php │ └── VendorContact.php ├── Ninja │ ├── DNS │ │ └── Cloudflare.php │ ├── Datatables │ │ ├── AccountGatewayDatatable.php │ │ ├── ActivityDatatable.php │ │ ├── BankAccountDatatable.php │ │ ├── ClientDatatable.php │ │ ├── CreditDatatable.php │ │ ├── EntityDatatable.php │ │ ├── ExpenseCategoryDatatable.php │ │ ├── ExpenseDatatable.php │ │ ├── InvoiceDatatable.php │ │ ├── PaymentDatatable.php │ │ ├── PaymentTermDatatable.php │ │ ├── ProductDatatable.php │ │ ├── ProjectDatatable.php │ │ ├── ProjectTaskDatatable.php │ │ ├── ProposalCategoryDatatable.php │ │ ├── ProposalDatatable.php │ │ ├── ProposalSnippetDatatable.php │ │ ├── ProposalTemplateDatatable.php │ │ ├── RecurringExpenseDatatable.php │ │ ├── RecurringInvoiceDatatable.php │ │ ├── SubscriptionDatatable.php │ │ ├── TaskDatatable.php │ │ ├── TaxRateDatatable.php │ │ ├── TokenDatatable.php │ │ ├── UserDatatable.php │ │ └── VendorDatatable.php │ ├── Import │ │ ├── BaseTransformer.php │ │ ├── CSV │ │ │ ├── ClientTransformer.php │ │ │ ├── ExpenseTransformer.php │ │ │ ├── InvoiceTransformer.php │ │ │ ├── PaymentTransformer.php │ │ │ ├── ProductTransformer.php │ │ │ └── VendorTransformer.php │ │ ├── FreshBooks │ │ │ ├── ClientTransformer.php │ │ │ ├── InvoiceTransformerBAK.php │ │ │ ├── PaymentTransformer.php │ │ │ ├── TaskTransformer.php │ │ │ └── VendorTransformer.php │ │ ├── Harvest │ │ │ ├── ClientTransformer.php │ │ │ ├── ContactTransformer.php │ │ │ ├── InvoiceTransformer.php │ │ │ ├── PaymentTransformer.php │ │ │ ├── VendorContactTransformer.php │ │ │ └── VendorTransformer.php │ │ ├── Hiveage │ │ │ ├── ClientTransformer.php │ │ │ ├── InvoiceTransformer.php │ │ │ ├── PaymentTransformer.php │ │ │ └── VendorTransformer.php │ │ ├── Invoiceable │ │ │ ├── ClientTransformer.php │ │ │ ├── InvoiceTransformer.php │ │ │ ├── PaymentTransformer.php │ │ │ └── VendorTransformer.php │ │ ├── Nutcache │ │ │ ├── ClientTransformer.php │ │ │ ├── InvoiceTransformer.php │ │ │ ├── PaymentTransformer.php │ │ │ ├── TaskTransformer.php │ │ │ └── VendorTransformer.php │ │ ├── Pancake │ │ │ ├── ClientTransformer.php │ │ │ ├── InvoiceTransformer.php │ │ │ └── PaymentTransformer.php │ │ ├── Ronin │ │ │ ├── ClientTransformer.php │ │ │ ├── InvoiceTransformer.php │ │ │ ├── PaymentTransformer.php │ │ │ └── VendorTransformer.php │ │ ├── Stripe │ │ │ └── CustomerTransformer.php │ │ ├── Wave │ │ │ ├── ClientTransformer.php │ │ │ ├── InvoiceTransformer.php │ │ │ ├── PaymentTransformer.php │ │ │ └── VendorTransformer.php │ │ └── Zoho │ │ │ ├── ClientTransformer.php │ │ │ ├── InvoiceTransformer.php │ │ │ ├── PaymentTransformer.php │ │ │ └── VendorTransformer.php │ ├── Intents │ │ ├── BaseIntent.php │ │ ├── CreateInvoiceIntent.php │ │ ├── DownloadInvoiceIntent.php │ │ ├── EmailInvoiceIntent.php │ │ ├── InvoiceIntent.php │ │ ├── ListProductsIntent.php │ │ ├── ProductIntent.php │ │ ├── UpdateInvoiceIntent.php │ │ └── WebApp │ │ │ ├── CreateClientIntent.php │ │ │ ├── CreateCreditIntent.php │ │ │ ├── CreateExpenseIntent.php │ │ │ ├── CreateInvoiceIntent.php │ │ │ ├── CreatePaymentIntent.php │ │ │ ├── CreateProductIntent.php │ │ │ ├── CreateQuoteIntent.php │ │ │ ├── CreateRecurringInvoiceIntent.php │ │ │ ├── CreateTaskIntent.php │ │ │ ├── CreateVendorIntent.php │ │ │ ├── FindClientIntent.php │ │ │ ├── FindInvoiceIntent.php │ │ │ ├── FindQuoteIntent.php │ │ │ ├── ListClientIntent.php │ │ │ ├── ListCreditIntent.php │ │ │ ├── ListExpenseIntent.php │ │ │ ├── ListInvoiceIntent.php │ │ │ ├── ListPaymentIntent.php │ │ │ ├── ListProductIntent.php │ │ │ ├── ListQuoteIntent.php │ │ │ ├── ListRecurringInvoiceIntent.php │ │ │ ├── ListTaskIntent.php │ │ │ ├── ListVendorIntent.php │ │ │ └── NavigateToIntent.php │ ├── Mailers │ │ ├── ContactMailer.php │ │ ├── Mailer.php │ │ └── UserMailer.php │ ├── Notifications │ │ └── PushFactory.php │ ├── OAuth │ │ ├── OAuth.php │ │ └── Providers │ │ │ ├── Google.php │ │ │ └── ProviderInterface.php │ ├── PaymentDrivers │ │ ├── AuthorizeNetAIMPaymentDriver.php │ │ ├── BasePaymentDriver.php │ │ ├── BitPayPaymentDriver.php │ │ ├── BraintreePaymentDriver.php │ │ ├── CheckoutComPaymentDriver.php │ │ ├── Custom1PaymentDriver.php │ │ ├── Custom2PaymentDriver.php │ │ ├── Custom3PaymentDriver.php │ │ ├── CybersourcePaymentDriver.php │ │ ├── DwollaPaymentDriver.php │ │ ├── EwayRapidSharedPaymentDriver.php │ │ ├── FedACHdir.txt │ │ ├── GoCardlessPaymentDriver.php │ │ ├── GoCardlessV2RedirectPaymentDriver.php │ │ ├── MolliePaymentDriver.php │ │ ├── PagSeguroPaymentDriver.php │ │ ├── PagarmePaymentDriver.php │ │ ├── PayFastPaymentDriver.php │ │ ├── PayPalExpressPaymentDriver.php │ │ ├── PayPalProPaymentDriver.php │ │ ├── PaymentActionRequiredException.php │ │ ├── PaymentExpressPxPayPaymentDriver.php │ │ ├── PaymentExpressPxPostPaymentDriver.php │ │ ├── PaymillPaymentDriver.php │ │ ├── SkrillPaymentDriver.php │ │ ├── StripePaymentDriver.php │ │ ├── TwoCheckoutPaymentDriver.php │ │ └── WePayPaymentDriver.php │ ├── Presenters │ │ ├── AccountPresenter.php │ │ ├── ActivityPresenter.php │ │ ├── ClientPresenter.php │ │ ├── CompanyPresenter.php │ │ ├── CreditPresenter.php │ │ ├── EntityPresenter.php │ │ ├── ExpensePresenter.php │ │ ├── InvoiceItemPresenter.php │ │ ├── InvoicePresenter.php │ │ ├── PaymentPresenter.php │ │ ├── ProductPresenter.php │ │ ├── ProjectPresenter.php │ │ ├── ProposalPresenter.php │ │ ├── ProposalSnippetPresenter.php │ │ ├── ProposalTemplatePresenter.php │ │ ├── TaskPresenter.php │ │ ├── UserPresenter.php │ │ └── VendorPresenter.php │ ├── Reports │ │ ├── AbstractReport.php │ │ ├── ActivityReport.php │ │ ├── AgingReport.php │ │ ├── ClientReport.php │ │ ├── CreditReport.php │ │ ├── DocumentReport.php │ │ ├── ExpenseReport.php │ │ ├── InvoiceReport.php │ │ ├── PaymentReport.php │ │ ├── ProductReport.php │ │ ├── ProfitAndLossReport.php │ │ ├── QuoteReport.php │ │ ├── TaskReport.php │ │ └── TaxRateReport.php │ ├── Repositories │ │ ├── AccountGatewayRepository.php │ │ ├── AccountRepository.php │ │ ├── ActivityRepository.php │ │ ├── BankAccountRepository.php │ │ ├── BaseRepository.php │ │ ├── ClientRepository.php │ │ ├── ContactRepository.php │ │ ├── CreditRepository.php │ │ ├── CustomerRepository.php │ │ ├── DashboardRepository.php │ │ ├── DocumentRepository.php │ │ ├── ExpenseCategoryRepository.php │ │ ├── ExpenseRepository.php │ │ ├── InvoiceRepository.php │ │ ├── NinjaRepository.php │ │ ├── PaymentRepository.php │ │ ├── PaymentTermRepository.php │ │ ├── ProductRepository.php │ │ ├── ProjectRepository.php │ │ ├── ProposalCategoryRepository.php │ │ ├── ProposalRepository.php │ │ ├── ProposalSnippetRepository.php │ │ ├── ProposalTemplateRepository.php │ │ ├── RecurringExpenseRepository.php │ │ ├── ReferralRepository.php │ │ ├── SubscriptionRepository.php │ │ ├── TaskRepository.php │ │ ├── TaxRateRepository.php │ │ ├── TokenRepository.php │ │ ├── UserRepository.php │ │ ├── VendorContactRepository.php │ │ └── VendorRepository.php │ ├── Serializers │ │ └── ArraySerializer.php │ └── Transformers │ │ ├── AccountEmailSettingsTransformer.php │ │ ├── AccountTokenTransformer.php │ │ ├── AccountTransformer.php │ │ ├── ActivityTransformer.php │ │ ├── ClientTransformer.php │ │ ├── ContactTransformer.php │ │ ├── CreditTransformer.php │ │ ├── DocumentTransformer.php │ │ ├── EntityTransformer.php │ │ ├── ExpenseCategoryTransformer.php │ │ ├── ExpenseTransformer.php │ │ ├── InvitationTransformer.php │ │ ├── InvoiceItemTransformer.php │ │ ├── InvoiceTransformer.php │ │ ├── PaymentTermTransformer.php │ │ ├── PaymentTransformer.php │ │ ├── ProductTransformer.php │ │ ├── ProjectTransformer.php │ │ ├── TaskStatusTransformer.php │ │ ├── TaskTransformer.php │ │ ├── TaxRateTransformer.php │ │ ├── UserAccountTransformer.php │ │ ├── UserTransformer.php │ │ ├── VendorContactTransformer.php │ │ └── VendorTransformer.php ├── Notifications │ └── PaymentCreated.php ├── Policies │ ├── AccountGatewayPolicy.php │ ├── BankAccountPolicy.php │ ├── ClientPolicy.php │ ├── ContactPolicy.php │ ├── CreditPolicy.php │ ├── CustomerPolicy.php │ ├── DocumentPolicy.php │ ├── EntityPolicy.php │ ├── ExpenseCategoryPolicy.php │ ├── ExpensePolicy.php │ ├── GenericEntityPolicy.php │ ├── InvoicePolicy.php │ ├── PaymentPolicy.php │ ├── PaymentTermPolicy.php │ ├── ProductPolicy.php │ ├── ProjectPolicy.php │ ├── ProposalCategoryPolicy.php │ ├── ProposalPolicy.php │ ├── ProposalSnippetPolicy.php │ ├── ProposalTemplatePolicy.php │ ├── QuotePolicy.php │ ├── RecurringExpensePolicy.php │ ├── RecurringInvoicePolicy.php │ ├── SubscriptionPolicy.php │ ├── TaskPolicy.php │ ├── TaxRatePolicy.php │ ├── TokenPolicy.php │ └── VendorPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BusServiceProvider.php │ ├── ComposerServiceProvider.php │ ├── ConfigServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Services │ ├── AccountGatewayService.php │ ├── ActivityService.php │ ├── AuthService.php │ ├── BankAccountService.php │ ├── BaseService.php │ ├── ClientService.php │ ├── ContactService.php │ ├── CreditService.php │ ├── DatatableService.php │ ├── EmailService.php │ ├── ExpenseCategoryService.php │ ├── ExpenseService.php │ ├── ImportService.php │ ├── InvoiceService.php │ ├── Migration │ │ ├── AuthService.php │ │ ├── CompanyService.php │ │ └── CompleteService.php │ ├── PaymentService.php │ ├── PaymentTermService.php │ ├── ProductService.php │ ├── ProjectService.php │ ├── ProposalCategoryService.php │ ├── ProposalService.php │ ├── ProposalSnippetService.php │ ├── ProposalTemplateService.php │ ├── PushService.php │ ├── RecurringExpenseService.php │ ├── RecurringInvoiceService.php │ ├── SubscriptionService.php │ ├── TaskService.php │ ├── TaxRateService.php │ ├── TemplateService.php │ ├── TokenService.php │ ├── UserService.php │ └── VendorService.php └── Traits │ └── GenerateMigrationResources.php ├── artisan ├── bootstrap ├── app.php └── autoload.php ├── bower.json ├── codeception.yml ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── bootstrapper.php ├── cache.php ├── chumper.datatable.php ├── compile.php ├── cors.php ├── countries.php ├── database.php ├── debugbar.php ├── excel.php ├── filesystems.php ├── former.php ├── google2fa.php ├── ide-helper.php ├── image.php ├── mail.php ├── modules.php ├── ninja.php ├── packages │ ├── .gitkeep │ ├── ignited │ │ └── laravel-omnipay │ │ │ └── config.php │ └── zizaco │ │ └── confide │ │ ├── .gitkeep │ │ └── config.php ├── pdf.php ├── push-notification.php ├── queue.php ├── self-update.php ├── services.php ├── session.php ├── swaggervel.php └── view.php ├── database ├── factories │ └── ModelFactory.php ├── migrations │ ├── .gitkeep │ ├── 2013_11_05_180133_confide_setup_users_table.php │ ├── 2013_11_28_195703_setup_countries_table.php │ ├── 2014_02_13_151500_add_cascase_drops.php │ ├── 2014_02_19_151817_add_support_for_invoice_designs.php │ ├── 2014_03_03_155556_add_phone_to_account.php │ ├── 2014_03_19_201454_add_language_support.php │ ├── 2014_03_20_200300_create_payment_libraries.php │ ├── 2014_03_23_051736_enable_forcing_jspdf.php │ ├── 2014_03_25_102200_add_sort_and_recommended_to_gateways.php │ ├── 2014_04_03_191105_add_pro_plan.php │ ├── 2014_04_17_100523_add_remember_token.php │ ├── 2014_04_17_145108_add_custom_fields.php │ ├── 2014_04_23_170909_add_products_settings.php │ ├── 2014_04_29_174315_add_advanced_settings.php │ ├── 2014_05_17_175626_add_quotes.php │ ├── 2014_06_17_131940_add_accepted_credit_cards_to_account_gateways.php │ ├── 2014_07_13_142654_one_click_install.php │ ├── 2014_07_17_205900_support_hiding_quantity.php │ ├── 2014_07_24_171214_add_zapier_support.php │ ├── 2014_10_01_141248_add_company_vat_number.php │ ├── 2014_10_05_141856_track_last_seen_message.php │ ├── 2014_10_06_103529_add_timesheets.php │ ├── 2014_10_06_195330_add_invoice_design_table.php │ ├── 2014_10_13_054100_add_invoice_number_settings.php │ ├── 2014_10_14_225227_add_danish_translation.php │ ├── 2014_10_22_174452_add_affiliate_price.php │ ├── 2014_10_30_184126_add_company_id_number.php │ ├── 2014_11_04_200406_allow_null_client_currency.php │ ├── 2014_12_03_154119_add_discount_type.php │ ├── 2015_02_12_102940_add_email_templates.php │ ├── 2015_02_17_131714_support_token_billing.php │ ├── 2015_02_27_081836_add_invoice_footer.php │ ├── 2015_03_03_140259_add_tokens.php │ ├── 2015_03_09_151011_add_ip_to_activity.php │ ├── 2015_03_15_174122_add_pdf_email_attachment_option.php │ ├── 2015_03_30_100000_create_password_resets_table.php │ ├── 2015_04_12_093447_add_sv_language.php │ ├── 2015_04_13_100333_add_notify_approved.php │ ├── 2015_04_16_122647_add_partial_amount_to_invoices.php │ ├── 2015_05_21_184104_add_font_size.php │ ├── 2015_05_27_121828_add_tasks.php │ ├── 2015_05_27_170808_add_custom_invoice_labels.php │ ├── 2015_06_09_134208_add_has_tasks_to_invoices.php │ ├── 2015_06_14_093410_enable_resuming_tasks.php │ ├── 2015_06_14_173025_multi_company_support.php │ ├── 2015_07_07_160257_support_locking_account.php │ ├── 2015_07_08_114333_simplify_tasks.php │ ├── 2015_07_19_081332_add_custom_design.php │ ├── 2015_07_27_183830_add_pdfmake_support.php │ ├── 2015_08_13_084041_add_formats_to_datetime_formats_table.php │ ├── 2015_09_04_080604_add_swap_postal_code.php │ ├── 2015_09_07_135935_add_account_domain.php │ ├── 2015_09_10_185135_add_reminder_emails.php │ ├── 2015_10_07_135651_add_social_login.php │ ├── 2015_10_21_075058_add_default_tax_rates.php │ ├── 2015_10_21_185724_add_invoice_number_pattern.php │ ├── 2015_10_27_180214_add_is_system_to_activities.php │ ├── 2015_10_29_133747_add_default_quote_terms.php │ ├── 2015_11_01_080417_encrypt_tokens.php │ ├── 2015_11_03_181318_improve_currency_localization.php │ ├── 2015_11_30_133206_add_email_designs.php │ ├── 2015_12_27_154513_add_reminder_settings.php │ ├── 2015_12_30_042035_add_client_view_css.php │ ├── 2016_01_04_175228_create_vendors_table.php │ ├── 2016_01_06_153144_add_invoice_font_support.php │ ├── 2016_01_17_155725_add_quote_to_invoice_option.php │ ├── 2016_01_18_195351_add_bank_accounts.php │ ├── 2016_01_24_112646_add_bank_subaccounts.php │ ├── 2016_01_27_173015_add_header_footer_option.php │ ├── 2016_02_01_135956_add_source_currency_to_expenses.php │ ├── 2016_02_25_152948_add_client_password.php │ ├── 2016_02_28_081424_add_custom_invoice_fields.php │ ├── 2016_03_14_066181_add_user_permissions.php │ ├── 2016_03_14_214710_add_support_three_decimal_taxes.php │ ├── 2016_03_22_168362_add_documents.php │ ├── 2016_03_23_215049_support_multiple_tax_rates.php │ ├── 2016_04_16_103943_enterprise_plan.php │ ├── 2016_04_18_174135_add_page_size.php │ ├── 2016_04_23_182223_payments_changes.php │ ├── 2016_05_16_102925_add_swap_currency_symbol_to_currency.php │ ├── 2016_05_18_085739_add_invoice_type_support.php │ ├── 2016_05_24_164847_wepay_ach.php │ ├── 2016_07_08_083802_support_new_pricing.php │ ├── 2016_07_13_083821_add_buy_now_buttons.php │ ├── 2016_08_10_184027_add_support_for_bots.php │ ├── 2016_09_05_150625_create_gateway_types.php │ ├── 2016_10_20_191150_add_expense_to_activities.php │ ├── 2016_11_03_113316_add_invoice_signature.php │ ├── 2016_11_03_161149_add_bluevine_fields.php │ ├── 2016_11_28_092904_add_task_projects.php │ ├── 2016_12_13_113955_add_pro_plan_discount.php │ ├── 2017_01_01_214241_add_inclusive_taxes.php │ ├── 2017_02_23_095934_add_custom_product_fields.php │ ├── 2017_03_16_085702_add_gateway_fee_location.php │ ├── 2017_04_16_101744_add_custom_contact_fields.php │ ├── 2017_04_30_174702_add_multiple_database_support.php │ ├── 2017_05_10_144928_add_oauth_to_lookups.php │ ├── 2017_05_16_101715_add_default_note_to_client.php │ ├── 2017_06_19_111515_update_dark_mode.php │ ├── 2017_07_18_124150_add_late_fees.php │ ├── 2017_08_14_085334_increase_precision.php │ ├── 2017_10_17_083846_add_default_rates.php │ ├── 2017_11_15_114422_add_subdomain_to_lookups.php │ ├── 2017_12_13_074024_add_remember_2fa_token.php │ ├── 2018_01_10_073825_add_subscription_format.php │ ├── 2018_03_08_150414_add_slack_notifications.php │ ├── 2018_03_30_115805_add_more_custom_fields.php │ ├── 2018_04_16_142434_add_custom_domain.php │ ├── 2018_05_14_091806_limit_notifications.php │ ├── 2018_05_19_095124_add_json_permissions.php │ ├── 2018_06_29_110607_add_dart_format_column.php │ ├── 2018_07_26_170243_fix_payment_contact_foreign_key.php │ ├── 2018_10_22_084326_add_option_for_product_notes.php │ └── 2019_08_27_074711_add_app_store_order_id.php ├── seeds │ ├── .gitkeep │ ├── BanksSeeder.php │ ├── ConstantsSeeder.php │ ├── CountriesSeeder.php │ ├── CurrenciesSeeder.php │ ├── DatabaseSeeder.php │ ├── DateFormatsSeeder.php │ ├── DbServerSeeder.php │ ├── FontsSeeder.php │ ├── FrequencySeeder.php │ ├── GatewayTypesSeeder.php │ ├── IndustrySeeder.php │ ├── InvoiceDesignsSeeder.php │ ├── InvoiceStatusSeeder.php │ ├── LanguageSeeder.php │ ├── PaymentLibrariesSeeder.php │ ├── PaymentStatusSeeder.php │ ├── PaymentTermsSeeder.php │ ├── PaymentTypesSeeder.php │ ├── ProposalTemplatesSeeder.php │ ├── UpdateSeeder.php │ └── UserTableSeeder.php └── setup.sql ├── docs ├── Makefile ├── api.rst ├── api_tokens.rst ├── client_portal.rst ├── clients.rst ├── conf.py ├── configure.rst ├── credits.rst ├── custom_modules.rst ├── data_visualizations.rst ├── developer_guide.rst ├── digital_ocean.rst ├── email_settings.rst ├── expenses.rst ├── images │ ├── env_file_api_secret.png │ └── iphone_self_hosted.png ├── index.rst ├── install.rst ├── introduction.rst ├── invoice_design.rst ├── invoice_settings.rst ├── invoices.rst ├── mobile_apps.rst ├── payments.rst ├── proposals.rst ├── quotes.rst ├── recurring_invoices.rst ├── reports.rst ├── settings.rst ├── tasks.rst ├── templates_and_reminders.rst ├── update.rst ├── user_management.rst └── vendors.rst ├── gulpfile.js ├── package.json ├── phpspec.yml ├── phpunit.xml ├── public ├── .htaccess ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon-120x120-precomposed.png ├── apple-touch-icon-120x120.png ├── apple-touch-icon-152x152-precomposed.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── browserconfig.xml ├── built.js ├── built.js.map ├── css │ ├── app.css │ ├── app.min.css │ ├── app.min.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── built.css │ ├── built.css.map │ ├── built.login.css │ ├── built.login.css.map │ ├── built.min.css │ ├── built.min.css.map │ ├── built.public.css │ ├── built.public.css.map │ ├── built.public.min.css │ ├── built.public.min.css.map │ ├── card.css │ ├── card.css.map │ ├── cookieconsent.min.css │ ├── customCss.css │ ├── customCss.min.css │ ├── customCss.min.css.map │ ├── daterangepicker.css │ ├── daterangepicker.css.map │ ├── fullcalendar.css │ ├── fullcalendar.css.map │ ├── grapes.css │ ├── grapes.css.map │ ├── grapesjs.css │ ├── grapesjs.css.map │ ├── img │ │ ├── jsoneditor-icons.png │ │ └── jsoneditor-icons.svg │ ├── jquery.datetimepicker.css │ ├── jquery.datetimepicker.min.css │ ├── jquery.datetimepicker.min.css.map │ ├── jquery.timepicker.css │ ├── jquery.timepicker.css.map │ ├── jsoneditor.min.css │ ├── jsoneditor.min.css.map │ ├── lightbox.css │ ├── lightbox.min.css │ ├── lightbox.min.css.map │ ├── login.css │ ├── login.css.map │ ├── quill.snow.css │ ├── quill.snow.min.css │ ├── quill.snow.min.css.map │ ├── select2.css │ ├── select2.css.map │ ├── style.min.css │ ├── style.min.css.map │ ├── tablesorter.css │ ├── tablesorter.css.map │ └── themes │ │ ├── amelia.min.css │ │ ├── cerulean.min.css │ │ ├── cosmo.min.css │ │ ├── cyborg.min.css │ │ ├── flatly.min.css │ │ ├── journal.min.css │ │ ├── readable.min.css │ │ ├── simplex.min.css │ │ ├── slate.min.css │ │ ├── spacelab.min.css │ │ ├── united.min.css │ │ └── yeti.min.css ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-v2.png ├── favicon.ico ├── favicon.png ├── fonts │ ├── .empty │ ├── FontAwesome.otf │ ├── Roboto-100 │ │ ├── LICENSE.txt │ │ ├── Roboto-100.eot │ │ ├── Roboto-100.svg │ │ ├── Roboto-100.ttf │ │ ├── Roboto-100.woff │ │ └── Roboto-100.woff2 │ ├── Roboto-700 │ │ ├── LICENSE.txt │ │ ├── Roboto-700.eot │ │ ├── Roboto-700.svg │ │ ├── Roboto-700.ttf │ │ ├── Roboto-700.woff │ │ └── Roboto-700.woff2 │ ├── Roboto-900 │ │ ├── LICENSE.txt │ │ ├── Roboto-900.eot │ │ ├── Roboto-900.svg │ │ ├── Roboto-900.ttf │ │ ├── Roboto-900.woff │ │ └── Roboto-900.woff2 │ ├── Roboto-regular │ │ ├── LICENSE.txt │ │ ├── Roboto-regular.eot │ │ ├── Roboto-regular.svg │ │ ├── Roboto-regular.ttf │ │ ├── Roboto-regular.woff │ │ └── Roboto-regular.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── main-fonts.woff │ ├── socicon-webfont.eot │ ├── socicon-webfont.svg │ ├── socicon-webfont.ttf │ └── socicon-webfont.woff ├── humans.txt ├── ic_cloud_circle.png ├── images │ ├── AcceptPaymentsOnline.png │ ├── AdjustablePaymentTerms.png │ ├── AlertsWhenInvoicesViewed.png │ ├── BeautifulTemplates.png │ ├── BestInClassSecurity.png │ ├── CloneInvoices.png │ ├── CloudBasedApp.png │ ├── CustomizeInvoices.png │ ├── EstimatesProForma.png │ ├── FreeInvoicing.png │ ├── GitHub.png │ ├── ImportExportRecords.png │ ├── InTuitiveEditingInterface.png │ ├── IntegrateWithPaymentGateways.png │ ├── InvoiceClientsViaEmail.png │ ├── LivePDFCreation.png │ ├── ManualAutomaticInvoiceNumbers.png │ ├── MultilingualSupport.png │ ├── MultipleCurrencySupport.png │ ├── MultipleTaxSettings.png │ ├── OpenSource.png │ ├── PaymentTracking.png │ ├── PersonalizeInvoiceColor.png │ ├── PrintablePDFInvoices.png │ ├── RecurringInvoiceProfiles.png │ ├── SelfHostedAvailable.png │ ├── about1.jpg │ ├── about1@2x.jpg │ ├── about2.jpg │ ├── about2@2x.jpg │ ├── activeclients.png │ ├── activeclients@2x.png │ ├── apple-touch-icon-114x114-precomposed.png │ ├── apple-touch-icon-144x144-precomposed.png │ ├── apple-touch-icon-57x57-precomposed.png │ ├── apple-touch-icon-72x72-precomposed.png │ ├── apple-touch-icon.png │ ├── benjacobson.jpg │ ├── bg-blue.jpg │ ├── clients.png │ ├── clients@2x.png │ ├── close.png │ ├── credit_cards │ │ ├── Test-AmericanExpress-Icon.png │ │ ├── Test-Diners-Icon.png │ │ ├── Test-Discover-Icon.png │ │ ├── Test-MasterCard-Icon.png │ │ ├── Test-Visa-Icon.png │ │ ├── ach.png │ │ ├── americanexpress.png │ │ ├── carteblanche.png │ │ ├── creditcardother.png │ │ ├── dinerscard.png │ │ ├── discovercard.png │ │ ├── jcb.png │ │ ├── laser.png │ │ ├── maestro.png │ │ ├── mastercard.png │ │ ├── paypal.png │ │ ├── solo.png │ │ ├── switch.png │ │ ├── unionpay.png │ │ └── visacard.png │ ├── designs │ │ ├── business.png │ │ ├── business_thumb.png │ │ ├── creative.png │ │ ├── creative_thumb.png │ │ ├── elegant.png │ │ ├── elegant_thumb.png │ │ ├── hipster.png │ │ ├── hipster_thumb.png │ │ ├── photo.png │ │ ├── photo_thumb.png │ │ ├── playful.png │ │ └── playful_thumb.png │ ├── devices-2.png │ ├── devices.png │ ├── devices3.png │ ├── emails │ │ ├── dark.png │ │ ├── icon-facebook.png │ │ ├── icon-github.png │ │ ├── icon-twitter.png │ │ ├── light.png │ │ └── plain.png │ ├── facebook.jpg │ ├── features1.jpg │ ├── features2.jpg │ ├── features3.jpg │ ├── features4.jpg │ ├── features5.jpg │ ├── footer-logo.png │ ├── gateways │ │ ├── logo_AuthorizeNet_AIM.png │ │ ├── logo_BeanStream.png │ │ ├── logo_Bitcoin.png │ │ ├── logo_FirstData_Connect.png │ │ ├── logo_PayPal_Pro.png │ │ ├── logo_TwoCheckout.png │ │ └── logo_iTransact.png │ ├── hero-bg-1.jpg │ ├── hero-bg-2.jpg │ ├── hero-bg-3.jpg │ ├── hero-bg-4.jpg │ ├── hero-bg-contact.jpg │ ├── hero-bg-faq.jpg │ ├── hero-bg-plans.jpg │ ├── hero-bg-secure-pay.jpg │ ├── hero-bg-testi.jpg │ ├── hero-faq@2x.png │ ├── hex-facebook.png │ ├── hex-github.png │ ├── hex-gplus.png │ ├── hex-linkedin.png │ ├── hex-pinterest.png │ ├── hex-rss.png │ ├── hex-twitter.png │ ├── hillelcoren.jpg │ ├── icon-about.png │ ├── icon-about@2x.png │ ├── icon-balance.svg │ ├── icon-contact.png │ ├── icon-contact@2x.png │ ├── icon-faq.png │ ├── icon-features.png │ ├── icon-features@2x.png │ ├── icon-free.png │ ├── icon-free2.png │ ├── icon-free@2x.png │ ├── icon-login.png │ ├── icon-login@2x.png │ ├── icon-opensource.png │ ├── icon-opensource@2x.png │ ├── icon-paidtodate.svg │ ├── icon-payment.png │ ├── icon-payment@2x.png │ ├── icon-pdf.png │ ├── icon-pdf@2x.png │ ├── icon-plans.png │ ├── icon-plans@2x.png │ ├── icon-secure-footer.png │ ├── icon-secure-footer@2x.png │ ├── icon-secure-pay.png │ ├── icon-secure-pay@2x.png │ ├── icon-secure.png │ ├── icon-secure@2x.png │ ├── icon-shield.png │ ├── icon-testi.png │ ├── icon-testi@2x.png │ ├── icon-total-invoiced.svg │ ├── instagram.svg │ ├── invoiceninja-logo.png │ ├── invoiceninja-logo@2x.png │ ├── invoiceninja-logox53.png │ ├── laptopwicon.jpg │ ├── lightbox │ │ ├── close.png │ │ ├── loading.gif │ │ ├── next.png │ │ └── prev.png │ ├── linkedin.svg │ ├── loading.gif │ ├── me.svg │ ├── next.png │ ├── opensource-footer.png │ ├── plaid-logo.svg │ ├── plaid-logowhite.svg │ ├── prev.png │ ├── pro-plan-chart.png │ ├── pro_plan │ │ ├── border.png │ │ ├── check.png │ │ ├── close.png │ │ ├── price.png │ │ ├── white_label_after.png │ │ └── white_label_before.png │ ├── providers.png │ ├── quote.png │ ├── razikantorp.jpg │ ├── report_logo1.jpg │ ├── report_logo2.jpg │ ├── report_logo3.jpg │ ├── report_logo3.png │ ├── round_logo.png │ ├── shalomstark.jpg │ ├── social.jpg │ ├── social │ │ ├── facebook.png │ │ ├── facebook.svg │ │ ├── github.png │ │ ├── signin │ │ │ ├── btn_facebook_signin.png │ │ │ ├── btn_github_signin.png │ │ │ ├── btn_google_signin_dark_normal_web@2x.png │ │ │ └── btn_linkedin_signin.png │ │ ├── twitter.png │ │ └── twitter.svg │ ├── sort_asc.png │ ├── sort_asc_disabled.png │ ├── sort_both.png │ ├── sort_desc.png │ ├── sort_desc_disabled.png │ ├── ssl-footer.png │ ├── totalincome.png │ ├── totalincome@2x.png │ ├── totalinvoices.png │ ├── totalinvoices@2x.png │ ├── twitter.svg │ ├── website.svg │ ├── youtube.png │ └── youtube_screenshot.png ├── index.php ├── js │ ├── Chart.min.js │ ├── Chart.min.js.map │ ├── bootstrap-combobox.min.js │ ├── bootstrap-combobox.min.js.map │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── card.min.js │ ├── card.min.js.map │ ├── cookieconsent.min.js │ ├── d3.min.js │ ├── d3.min.js.map │ ├── daterangepicker.min.js │ ├── daterangepicker.min.js.map │ ├── fullcalendar.min.js │ ├── fullcalendar.min.js.map │ ├── grapes.min.js │ ├── grapes.min.js.map │ ├── grapesjs-blocks-basic.min.js │ ├── grapesjs-preset-newsletter.min.js │ ├── grapesjs.min.js │ ├── grapesjs.min.js.map │ ├── jSignature.min.js │ ├── jSignature.min.js.map │ ├── jquery.datetimepicker.js │ ├── jquery.datetimepicker.min.js │ ├── jquery.datetimepicker.min.js.map │ ├── jquery.timepicker.js │ ├── jquery.timepicker.js.map │ ├── jsoneditor.min.js │ ├── jsoneditor.min.js.map │ ├── jspdf.min.js │ ├── jspdf.plugin.split_text_to_size.js │ ├── jspdf.source.js │ ├── lightbox.min.js │ ├── lightbox.min.js.map │ ├── pdf.js │ ├── pdf.min.js │ ├── pdf.min.js.map │ ├── pdf_viewer.worker.js │ ├── pdf_viewer.worker.js.map │ ├── pdfmake.min.js │ ├── pdfmake.min.js.map │ ├── qrcode.min.js │ ├── qrcode.min.js.map │ ├── quill.min.js │ ├── quill.min.js.map │ ├── retina-1.1.0.min.js │ ├── script.js.map │ ├── select2.min.js │ ├── select2.min.js.map │ ├── simpleexpand.js │ ├── stacktrace.js │ ├── tablesorter.min.js │ ├── tablesorter.min.js.map │ ├── typedarray.js │ ├── typedarray.js.map │ ├── valign.js │ └── vfs_fonts │ │ ├── abril_fatface.js │ │ ├── arvo.js │ │ ├── gensha_gothic.js │ │ ├── gensha_gothic_p.js │ │ ├── josefin_sans.js │ │ ├── josefin_sans_light.js │ │ ├── josefin_slab.js │ │ ├── josefin_slab_light.js │ │ ├── open_sans.js │ │ ├── open_sans_light.js │ │ ├── pt_sans.js │ │ ├── pt_serif.js │ │ ├── raleway.js │ │ ├── raleway_light.js │ │ ├── roboto.js │ │ ├── titillium.js │ │ ├── titillium_light.js │ │ ├── ubuntu.js │ │ ├── ubuntu_light.js │ │ └── ukai.js ├── manifest.json ├── mstile-150x150.png ├── pdf.built.js ├── pdf.built.js.map ├── public.style.min.css ├── public.style.min.css.map ├── robots.txt ├── safari-pinned-tab.svg └── youtube.png ├── resources ├── assets │ ├── css │ │ ├── app.css │ │ ├── bootstrap-combobox.css │ │ ├── colors.css │ │ ├── customCss.css │ │ ├── fonts.css │ │ ├── grapesjs-preset-newsletter.css │ │ ├── img │ │ │ └── jsoneditor-icons.png │ │ ├── login.css │ │ ├── public.style.css │ │ ├── sidebar.css │ │ ├── style.css │ │ ├── themes │ │ │ ├── amelia.min.css │ │ │ ├── cerulean.min.css │ │ │ ├── cosmo.min.css │ │ │ ├── cyborg.min.css │ │ │ ├── flatly.min.css │ │ │ ├── journal.min.css │ │ │ ├── readable.min.css │ │ │ ├── simplex.min.css │ │ │ ├── slate.min.css │ │ │ ├── spacelab.min.css │ │ │ ├── united.min.css │ │ │ └── yeti.min.css │ │ └── typeahead.js-bootstrap.css │ └── js │ │ ├── Chart.js │ │ ├── bootstrap-combobox.js │ │ ├── compatibility.js │ │ ├── d3.js │ │ ├── maximize-select2-height.js │ │ ├── pdf.js │ │ ├── pdf.pdfmake.js │ │ ├── pdf_viewer.js │ │ ├── pdf_viewer.worker.js │ │ ├── pdfmake.js │ │ ├── script.js │ │ ├── vfs.js │ │ └── vfs_fonts │ │ ├── abril_fatface.js │ │ ├── arvo.js │ │ ├── gensha_gothic.js │ │ ├── gensha_gothic_p.js │ │ ├── josefin_sans.js │ │ ├── josefin_sans_light.js │ │ ├── josefin_slab.js │ │ ├── josefin_slab_light.js │ │ ├── open_sans.js │ │ ├── open_sans_light.js │ │ ├── pt_sans.js │ │ ├── pt_serif.js │ │ ├── raleway.js │ │ ├── raleway_light.js │ │ ├── roboto.js │ │ ├── titillium.js │ │ ├── titillium_light.js │ │ ├── ubuntu.js │ │ ├── ubuntu_light.js │ │ └── ukai.js ├── lang │ ├── bg │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php │ ├── ca │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php │ ├── cs │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php │ ├── da │ │ ├── pagination.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── de │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── el │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php │ ├── en │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── en_AU │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── en_GB │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── es │ │ ├── pagination.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── es_ES │ │ ├── pagination.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── fi │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php │ ├── fr │ │ ├── pagination.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── fr_CA │ │ ├── pagination.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── hr │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php │ ├── it │ │ ├── pagination.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── ja │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── lt │ │ ├── pagination.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── mk_MK │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php │ ├── nb_NO │ │ ├── pagination.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── nl │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── pl │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── pt_BR │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── pt_PT │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── ro │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php │ ├── sl │ │ ├── auth.php │ │ ├── c3.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── texts.php │ ├── sq │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php │ ├── sr_RS │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php │ ├── sv │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── texts.php │ │ └── validation.php │ ├── th │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php │ ├── tr_TR │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php │ └── zh_TW │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── texts.php │ │ └── validation.php ├── test.pjs └── views │ ├── accounts │ ├── account_gateway.blade.php │ ├── account_gateway_wepay.blade.php │ ├── api_tokens.blade.php │ ├── bank_account.blade.php │ ├── banks.blade.php │ ├── client_portal.blade.php │ ├── customize_design.blade.php │ ├── details.blade.php │ ├── email_settings.blade.php │ ├── export.blade.php │ ├── import_export.blade.php │ ├── import_map.blade.php │ ├── import_ofx.blade.php │ ├── invoice_design.blade.php │ ├── invoice_settings.blade.php │ ├── localization.blade.php │ ├── management.blade.php │ ├── nav.blade.php │ ├── notifications.blade.php │ ├── partials │ │ ├── invoice_fields.blade.php │ │ ├── invoice_fields_selector.blade.php │ │ ├── map.blade.php │ │ ├── notifications.blade.php │ │ └── payment_credentials.blade.php │ ├── payment_term.blade.php │ ├── payment_terms.blade.php │ ├── payments.blade.php │ ├── product.blade.php │ ├── products.blade.php │ ├── subscription.blade.php │ ├── system_settings.blade.php │ ├── tax_rate.blade.php │ ├── tax_rates.blade.php │ ├── template.blade.php │ ├── templates_and_reminders.blade.php │ ├── token.blade.php │ ├── user_details.blade.php │ └── user_management.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── two_factor.blade.php │ ├── calendar.blade.php │ ├── client.blade.php │ ├── client_login.blade.php │ ├── clientauth │ ├── login.blade.php │ ├── passwords │ │ └── email.blade.php │ └── sessionexpired.blade.php │ ├── clients │ ├── edit.blade.php │ ├── show.blade.php │ └── statement.blade.php │ ├── coming_soon.blade.php │ ├── credits │ └── edit.blade.php │ ├── dashboard.blade.php │ ├── datatable.blade.php │ ├── emails │ ├── auth │ │ └── reminder.blade.php │ ├── client_password_html.blade.php │ ├── client_password_text.blade.php │ ├── confirm_action.blade.php │ ├── confirm_html.blade.php │ ├── confirm_text.blade.php │ ├── contact_html.blade.php │ ├── contact_text.blade.php │ ├── design2_html.blade.php │ ├── design2_text.blade.php │ ├── design3_html.blade.php │ ├── design3_text.blade.php │ ├── email_bounced_html.blade.php │ ├── email_bounced_text.blade.php │ ├── error.blade.php │ ├── invoice_html.blade.php │ ├── invoice_paid_html.blade.php │ ├── invoice_paid_text.blade.php │ ├── invoice_payment_failed_html.blade.php │ ├── invoice_payment_failed_text.blade.php │ ├── invoice_sent_html.blade.php │ ├── invoice_sent_text.blade.php │ ├── invoice_text.blade.php │ ├── invoice_viewed_html.blade.php │ ├── invoice_viewed_text.blade.php │ ├── license_confirmation_html.blade.php │ ├── license_confirmation_text.blade.php │ ├── master.blade.php │ ├── master_contact.blade.php │ ├── master_user.blade.php │ ├── partials │ │ ├── account_logo.blade.php │ │ ├── client_view_action.blade.php │ │ └── user_view_action.blade.php │ ├── password_html.blade.php │ ├── password_text.blade.php │ ├── payment_confirmation_html.blade.php │ ├── payment_confirmation_text.blade.php │ ├── quote_approved_html.blade.php │ ├── quote_approved_text.blade.php │ ├── security_code_html.blade.php │ ├── security_code_text.blade.php │ ├── user_message_html.blade.php │ └── user_message_text.blade.php │ ├── error.blade.php │ ├── errors │ ├── 400.blade.php │ ├── 503.blade.php │ └── list.blade.php │ ├── expense_categories │ └── edit.blade.php │ ├── expenses │ └── edit.blade.php │ ├── export.blade.php │ ├── export │ ├── clients.blade.php │ ├── contacts.blade.php │ ├── credits.blade.php │ ├── expenses.blade.php │ ├── invoices.blade.php │ ├── payments.blade.php │ ├── products.blade.php │ ├── recurring_invoices.blade.php │ ├── tasks.blade.php │ ├── vendor_contacts.blade.php │ └── vendors.blade.php │ ├── header.blade.php │ ├── invited │ ├── custom_gateway.blade.php │ ├── custom_message.blade.php │ ├── dashboard.blade.php │ ├── details.blade.php │ └── proposal.blade.php │ ├── invoices │ ├── deleted.blade.php │ ├── delivery_note.blade.php │ ├── edit.blade.php │ ├── edit_table.blade.php │ ├── email.blade.php │ ├── history.blade.php │ ├── knockout.blade.php │ ├── pdf.blade.php │ ├── view.blade.php │ └── view_borderless.blade.php │ ├── list.blade.php │ ├── list_wrapper.blade.php │ ├── login.blade.php │ ├── master.blade.php │ ├── migration │ ├── auth.blade.php │ ├── companies.blade.php │ ├── completed.blade.php │ ├── download.blade.php │ ├── endpoint.blade.php │ ├── import.blade.php │ ├── includes │ │ └── errors.blade.php │ └── start.blade.php │ ├── money_script.blade.php │ ├── partials │ ├── accept_terms.blade.php │ ├── autocomplete_fix.blade.php │ ├── bluevine_promo.blade.php │ ├── bulk_form.blade.php │ ├── checkbox.blade.php │ ├── contact_us.blade.php │ ├── custom_field.blade.php │ ├── custom_fields.blade.php │ ├── discount_promo.blade.php │ ├── dropzone.blade.php │ ├── email_button.blade.php │ ├── email_templates.blade.php │ ├── entity_combobox.blade.php │ ├── google_geocode.blade.php │ ├── keyboard_shortcuts.blade.php │ ├── navigation_option.blade.php │ ├── quill_toolbar.blade.php │ ├── refund_payment.blade.php │ ├── sign_up.blade.php │ ├── speech_recognition.blade.php │ ├── system_settings.blade.php │ ├── tax_rates.blade.php │ ├── upgrade_modal.blade.php │ ├── variables_help.blade.php │ ├── warn_session.blade.php │ ├── white_label.blade.php │ └── white_label_expired.blade.php │ ├── payments │ ├── apple_pay.blade.php │ ├── bank_transfer.blade.php │ ├── braintree │ │ ├── credit_card.blade.php │ │ └── paypal.blade.php │ ├── checkoutcom │ │ └── partial.blade.php │ ├── credit_card.blade.php │ ├── edit.blade.php │ ├── payment_css.blade.php │ ├── payment_method.blade.php │ ├── paymentmethods.blade.php │ ├── paymentmethods_list.blade.php │ ├── paymill │ │ └── credit_card.blade.php │ ├── stripe │ │ ├── bank_transfer.blade.php │ │ ├── bitcoin.blade.php │ │ ├── credit_card.blade.php │ │ ├── credit_card_stripe_css.blade.php │ │ ├── sepa.blade.php │ │ └── step2.blade.php │ └── wepay │ │ ├── bank_transfer.blade.php │ │ └── credit_card.blade.php │ ├── plans.blade.php │ ├── projects │ ├── edit.blade.php │ └── show.blade.php │ ├── proposals │ ├── categories │ │ └── edit.blade.php │ ├── edit.blade.php │ ├── grapesjs.blade.php │ ├── grapesjs_header.blade.php │ ├── grapesjs_help.blade.php │ ├── snippets │ │ └── edit.blade.php │ └── templates │ │ └── edit.blade.php │ ├── public │ ├── header.blade.php │ ├── invoice_now.blade.php │ ├── license.blade.php │ └── logo.blade.php │ ├── public_list.blade.php │ ├── reports │ ├── chart_builder.blade.php │ ├── d3.blade.php │ ├── emails.blade.php │ └── report_builder.blade.php │ ├── secure_payment.blade.php │ ├── setup.blade.php │ ├── tasks │ ├── edit.blade.php │ ├── kanban.blade.php │ ├── time_tracker.blade.php │ └── time_tracker_knockout.blade.php │ ├── timesheets │ └── edit.blade.php │ ├── user_account.blade.php │ ├── users │ ├── account_management.blade.php │ ├── edit.blade.php │ └── two_factor.blade.php │ ├── vendor.blade.php │ ├── vendor │ ├── chumper.datatable │ │ ├── javascript.blade.php │ │ ├── options.blade.php │ │ └── template.blade.php │ ├── notifications │ │ ├── email-plain.blade.php │ │ └── email.blade.php │ ├── pagination │ │ ├── bootstrap-4.blade.php │ │ ├── default.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ └── simple-default.blade.php │ ├── self-update │ │ ├── mails │ │ │ └── update-available.blade.php │ │ └── self-update.blade.php │ └── swaggervel │ │ ├── .gitkeep │ │ └── index.blade.php │ └── vendors │ ├── edit.blade.php │ └── show.blade.php ├── routes ├── api.php └── web.php ├── server.php ├── storage └── templates │ ├── bold.js │ ├── business.js │ ├── clean.css │ ├── clean.html │ ├── clean.js │ ├── creative.js │ ├── elegant.js │ ├── hipster.js │ ├── modern.js │ ├── photo.js │ ├── plain.js │ └── playful.js └── tests ├── ExampleTest.php ├── TestCase.php ├── _bootstrap.php.default ├── _data └── dump.sql ├── _support ├── AcceptanceTester.php ├── FunctionalTester.php ├── Helper │ ├── Acceptance.php │ ├── Functional.php │ └── Unit.php └── UnitTester.php ├── acceptance.suite.yml ├── acceptance ├── APICest.php ├── AllPagesCept.php ├── CheckBalanceCest.php ├── ClientCest.php ├── CreditCest.php ├── DiscountCest.php ├── ExpenseCest.php ├── GatewayFeesCest.php ├── GoProCest.php ├── InvoiceCest.php ├── InvoiceDesignCest.php ├── OnlinePaymentCest.php ├── PaymentCest.php ├── QuoteCest.php ├── TaskCest.php ├── TaxRatesCest.php └── _bootstrap.php ├── data └── Demo │ └── demo.response.json ├── functional.suite.yml ├── functional ├── PermissionsCest.php ├── SettingsCest.php └── _bootstrap.php ├── unit.suite.yml └── unit └── _bootstrap.php /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "./resources/assets/bower" 3 | } -------------------------------------------------------------------------------- /.env.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/.env.travis -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/.htaccess -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/README.md -------------------------------------------------------------------------------- /app/Commands/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Commands/Command.php -------------------------------------------------------------------------------- /app/Console/Commands/CheckData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Console/Commands/CheckData.php -------------------------------------------------------------------------------- /app/Console/Commands/InitLookup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Console/Commands/InitLookup.php -------------------------------------------------------------------------------- /app/Console/Commands/MakeClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Console/Commands/MakeClass.php -------------------------------------------------------------------------------- /app/Console/Commands/MakeModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Console/Commands/MakeModule.php -------------------------------------------------------------------------------- /app/Console/Commands/PruneData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Console/Commands/PruneData.php -------------------------------------------------------------------------------- /app/Console/Commands/ResetData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Console/Commands/ResetData.php -------------------------------------------------------------------------------- /app/Console/Commands/TestOFX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Console/Commands/TestOFX.php -------------------------------------------------------------------------------- /app/Console/Commands/UpdateKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Console/Commands/UpdateKey.php -------------------------------------------------------------------------------- /app/Console/Commands/stubs/job.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Console/Commands/stubs/job.stub -------------------------------------------------------------------------------- /app/Console/Commands/stubs/scaffold/config.stub: -------------------------------------------------------------------------------- 1 | '$STUDLY_NAME$' 5 | ]; 6 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Constants.php -------------------------------------------------------------------------------- /app/Constants/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Constants/Domain.php -------------------------------------------------------------------------------- /app/Events/ClientWasArchived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ClientWasArchived.php -------------------------------------------------------------------------------- /app/Events/ClientWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ClientWasCreated.php -------------------------------------------------------------------------------- /app/Events/ClientWasDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ClientWasDeleted.php -------------------------------------------------------------------------------- /app/Events/ClientWasRestored.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ClientWasRestored.php -------------------------------------------------------------------------------- /app/Events/ClientWasUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ClientWasUpdated.php -------------------------------------------------------------------------------- /app/Events/CreditWasArchived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/CreditWasArchived.php -------------------------------------------------------------------------------- /app/Events/CreditWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/CreditWasCreated.php -------------------------------------------------------------------------------- /app/Events/CreditWasDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/CreditWasDeleted.php -------------------------------------------------------------------------------- /app/Events/CreditWasRestored.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/CreditWasRestored.php -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/Event.php -------------------------------------------------------------------------------- /app/Events/ExpenseWasArchived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ExpenseWasArchived.php -------------------------------------------------------------------------------- /app/Events/ExpenseWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ExpenseWasCreated.php -------------------------------------------------------------------------------- /app/Events/ExpenseWasDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ExpenseWasDeleted.php -------------------------------------------------------------------------------- /app/Events/ExpenseWasRestored.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ExpenseWasRestored.php -------------------------------------------------------------------------------- /app/Events/ExpenseWasUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ExpenseWasUpdated.php -------------------------------------------------------------------------------- /app/Events/InvoiceWasArchived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/InvoiceWasArchived.php -------------------------------------------------------------------------------- /app/Events/InvoiceWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/InvoiceWasCreated.php -------------------------------------------------------------------------------- /app/Events/InvoiceWasDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/InvoiceWasDeleted.php -------------------------------------------------------------------------------- /app/Events/InvoiceWasEmailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/InvoiceWasEmailed.php -------------------------------------------------------------------------------- /app/Events/InvoiceWasRestored.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/InvoiceWasRestored.php -------------------------------------------------------------------------------- /app/Events/InvoiceWasUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/InvoiceWasUpdated.php -------------------------------------------------------------------------------- /app/Events/PaymentCompleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/PaymentCompleted.php -------------------------------------------------------------------------------- /app/Events/PaymentFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/PaymentFailed.php -------------------------------------------------------------------------------- /app/Events/PaymentWasArchived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/PaymentWasArchived.php -------------------------------------------------------------------------------- /app/Events/PaymentWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/PaymentWasCreated.php -------------------------------------------------------------------------------- /app/Events/PaymentWasDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/PaymentWasDeleted.php -------------------------------------------------------------------------------- /app/Events/PaymentWasRefunded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/PaymentWasRefunded.php -------------------------------------------------------------------------------- /app/Events/PaymentWasRestored.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/PaymentWasRestored.php -------------------------------------------------------------------------------- /app/Events/PaymentWasVoided.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/PaymentWasVoided.php -------------------------------------------------------------------------------- /app/Events/ProductWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ProductWasCreated.php -------------------------------------------------------------------------------- /app/Events/ProductWasDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ProductWasDeleted.php -------------------------------------------------------------------------------- /app/Events/ProductWasUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ProductWasUpdated.php -------------------------------------------------------------------------------- /app/Events/ProjectWasDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ProjectWasDeleted.php -------------------------------------------------------------------------------- /app/Events/ProposalWasDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/ProposalWasDeleted.php -------------------------------------------------------------------------------- /app/Events/QuoteWasArchived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/QuoteWasArchived.php -------------------------------------------------------------------------------- /app/Events/QuoteWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/QuoteWasCreated.php -------------------------------------------------------------------------------- /app/Events/QuoteWasDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/QuoteWasDeleted.php -------------------------------------------------------------------------------- /app/Events/QuoteWasEmailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/QuoteWasEmailed.php -------------------------------------------------------------------------------- /app/Events/QuoteWasRestored.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/QuoteWasRestored.php -------------------------------------------------------------------------------- /app/Events/QuoteWasUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/QuoteWasUpdated.php -------------------------------------------------------------------------------- /app/Events/SubdomainWasRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/SubdomainWasRemoved.php -------------------------------------------------------------------------------- /app/Events/SubdomainWasUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/SubdomainWasUpdated.php -------------------------------------------------------------------------------- /app/Events/TaskWasArchived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/TaskWasArchived.php -------------------------------------------------------------------------------- /app/Events/TaskWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/TaskWasCreated.php -------------------------------------------------------------------------------- /app/Events/TaskWasDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/TaskWasDeleted.php -------------------------------------------------------------------------------- /app/Events/TaskWasRestored.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/TaskWasRestored.php -------------------------------------------------------------------------------- /app/Events/TaskWasUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/TaskWasUpdated.php -------------------------------------------------------------------------------- /app/Events/UserLoggedIn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/UserLoggedIn.php -------------------------------------------------------------------------------- /app/Events/UserSettingsChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/UserSettingsChanged.php -------------------------------------------------------------------------------- /app/Events/UserSignedUp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/UserSignedUp.php -------------------------------------------------------------------------------- /app/Events/VendorWasArchived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/VendorWasArchived.php -------------------------------------------------------------------------------- /app/Events/VendorWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/VendorWasCreated.php -------------------------------------------------------------------------------- /app/Events/VendorWasDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/VendorWasDeleted.php -------------------------------------------------------------------------------- /app/Events/VendorWasRestored.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/VendorWasRestored.php -------------------------------------------------------------------------------- /app/Events/VendorWasUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Events/VendorWasUpdated.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Handlers/Commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Handlers/Events/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Http/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/ApiCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Http/Middleware/ApiCheck.php -------------------------------------------------------------------------------- /app/Http/Middleware/Cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Http/Middleware/Cors.php -------------------------------------------------------------------------------- /app/Http/Requests/ClientRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Http/Requests/ClientRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CreditRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Http/Requests/CreditRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/EntityRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Http/Requests/EntityRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/QuoteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Http/Requests/QuoteRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Http/Requests/Request.php -------------------------------------------------------------------------------- /app/Http/Requests/TaskRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Http/Requests/TaskRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Http/Requests/UserRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/VendorRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Http/Requests/VendorRequest.php -------------------------------------------------------------------------------- /app/Jobs/ConvertInvoiceToUbl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/ConvertInvoiceToUbl.php -------------------------------------------------------------------------------- /app/Jobs/ConvertProposalToPdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/ConvertProposalToPdf.php -------------------------------------------------------------------------------- /app/Jobs/DownloadInvoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/DownloadInvoices.php -------------------------------------------------------------------------------- /app/Jobs/ExportReportResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/ExportReportResults.php -------------------------------------------------------------------------------- /app/Jobs/GenerateCalendarEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/GenerateCalendarEvents.php -------------------------------------------------------------------------------- /app/Jobs/ImportData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/ImportData.php -------------------------------------------------------------------------------- /app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/Job.php -------------------------------------------------------------------------------- /app/Jobs/LoadPostmarkHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/LoadPostmarkHistory.php -------------------------------------------------------------------------------- /app/Jobs/LoadPostmarkStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/LoadPostmarkStats.php -------------------------------------------------------------------------------- /app/Jobs/PurgeAccountData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/PurgeAccountData.php -------------------------------------------------------------------------------- /app/Jobs/PurgeClientData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/PurgeClientData.php -------------------------------------------------------------------------------- /app/Jobs/RunReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/RunReport.php -------------------------------------------------------------------------------- /app/Jobs/SendInvoiceEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/SendInvoiceEmail.php -------------------------------------------------------------------------------- /app/Jobs/SendNotificationEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/SendNotificationEmail.php -------------------------------------------------------------------------------- /app/Jobs/SendPaymentEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/SendPaymentEmail.php -------------------------------------------------------------------------------- /app/Jobs/SendPushNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Jobs/SendPushNotification.php -------------------------------------------------------------------------------- /app/Libraries/CurlUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/app/Libraries/CurlUtils.php -------------------------------------------------------------------------------- /app/Libraries/DateUtils.php: -------------------------------------------------------------------------------- 1 | ', "\n\n", $body)) !!} -------------------------------------------------------------------------------- /resources/views/emails/design3_text.blade.php: -------------------------------------------------------------------------------- 1 | {!! strip_tags(str_replace('', "\n\n", $body)) !!} -------------------------------------------------------------------------------- /resources/views/emails/error.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/resources/views/error.blade.php -------------------------------------------------------------------------------- /resources/views/export.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/resources/views/export.blade.php -------------------------------------------------------------------------------- /resources/views/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/resources/views/header.blade.php -------------------------------------------------------------------------------- /resources/views/invoices/deleted.blade.php: -------------------------------------------------------------------------------- 1 | The requested invoice is not available. -------------------------------------------------------------------------------- /resources/views/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/resources/views/list.blade.php -------------------------------------------------------------------------------- /resources/views/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/resources/views/login.blade.php -------------------------------------------------------------------------------- /resources/views/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/resources/views/master.blade.php -------------------------------------------------------------------------------- /resources/views/plans.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/resources/views/plans.blade.php -------------------------------------------------------------------------------- /resources/views/setup.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/resources/views/setup.blade.php -------------------------------------------------------------------------------- /resources/views/vendor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/resources/views/vendor.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/swaggervel/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/server.php -------------------------------------------------------------------------------- /storage/templates/bold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/storage/templates/bold.js -------------------------------------------------------------------------------- /storage/templates/business.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/storage/templates/business.js -------------------------------------------------------------------------------- /storage/templates/clean.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/storage/templates/clean.css -------------------------------------------------------------------------------- /storage/templates/clean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/storage/templates/clean.html -------------------------------------------------------------------------------- /storage/templates/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/storage/templates/clean.js -------------------------------------------------------------------------------- /storage/templates/creative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/storage/templates/creative.js -------------------------------------------------------------------------------- /storage/templates/elegant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/storage/templates/elegant.js -------------------------------------------------------------------------------- /storage/templates/hipster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/storage/templates/hipster.js -------------------------------------------------------------------------------- /storage/templates/modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/storage/templates/modern.js -------------------------------------------------------------------------------- /storage/templates/photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/storage/templates/photo.js -------------------------------------------------------------------------------- /storage/templates/plain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/storage/templates/plain.js -------------------------------------------------------------------------------- /storage/templates/playful.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/storage/templates/playful.js -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/_bootstrap.php.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/_bootstrap.php.default -------------------------------------------------------------------------------- /tests/_data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /tests/_support/Helper/Unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/_support/Helper/Unit.php -------------------------------------------------------------------------------- /tests/_support/UnitTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/_support/UnitTester.php -------------------------------------------------------------------------------- /tests/acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance.suite.yml -------------------------------------------------------------------------------- /tests/acceptance/APICest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/APICest.php -------------------------------------------------------------------------------- /tests/acceptance/AllPagesCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/AllPagesCept.php -------------------------------------------------------------------------------- /tests/acceptance/ClientCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/ClientCest.php -------------------------------------------------------------------------------- /tests/acceptance/CreditCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/CreditCest.php -------------------------------------------------------------------------------- /tests/acceptance/DiscountCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/DiscountCest.php -------------------------------------------------------------------------------- /tests/acceptance/ExpenseCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/ExpenseCest.php -------------------------------------------------------------------------------- /tests/acceptance/GoProCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/GoProCest.php -------------------------------------------------------------------------------- /tests/acceptance/InvoiceCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/InvoiceCest.php -------------------------------------------------------------------------------- /tests/acceptance/PaymentCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/PaymentCest.php -------------------------------------------------------------------------------- /tests/acceptance/QuoteCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/QuoteCest.php -------------------------------------------------------------------------------- /tests/acceptance/TaskCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/TaskCest.php -------------------------------------------------------------------------------- /tests/acceptance/TaxRatesCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/TaxRatesCest.php -------------------------------------------------------------------------------- /tests/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/acceptance/_bootstrap.php -------------------------------------------------------------------------------- /tests/functional.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/functional.suite.yml -------------------------------------------------------------------------------- /tests/functional/SettingsCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/functional/SettingsCest.php -------------------------------------------------------------------------------- /tests/functional/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/functional/_bootstrap.php -------------------------------------------------------------------------------- /tests/unit.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/unit.suite.yml -------------------------------------------------------------------------------- /tests/unit/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/invoice-ninja/HEAD/tests/unit/_bootstrap.php --------------------------------------------------------------------------------