├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc ├── LICENSE ├── Makefile ├── Procfile ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── ContactsController.php │ │ ├── Controller.php │ │ ├── DashboardController.php │ │ ├── ImagesController.php │ │ ├── OrganizationsController.php │ │ ├── ReportsController.php │ │ └── UsersController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── HandleInertiaRequests.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── ContactStoreRequest.php │ │ ├── ContactUpdateRequest.php │ │ ├── OrganizationStoreRequest.php │ │ ├── OrganizationUpdateRequest.php │ │ ├── UserDeleteRequest.php │ │ ├── UserStoreRequest.php │ │ └── UserUpdateRequest.php │ └── Resources │ │ ├── ContactCollection.php │ │ ├── ContactResource.php │ │ ├── OrganizationCollection.php │ │ ├── OrganizationResource.php │ │ ├── UserCollection.php │ │ ├── UserOrganizationCollection.php │ │ └── UserResource.php ├── Models │ ├── Account.php │ ├── Contact.php │ ├── Model.php │ ├── Organization.php │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── Traits │ └── LockedDemoUser.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sentry.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── ContactFactory.php │ ├── OrganizationFactory.php │ └── UserFactory.php ├── migrations │ ├── 2019_03_05_000000_create_accounts_table.php │ ├── 2019_03_05_000000_create_contacts_table.php │ ├── 2019_03_05_000000_create_organizations_table.php │ ├── 2019_03_05_000000_create_password_resets_table.php │ └── 2019_03_05_000000_create_users_table.php └── seeders │ └── DatabaseSeeder.php ├── jsconfig.json ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── favicon.ico ├── index.php ├── robots.txt └── web.config ├── readme.md ├── resources ├── css │ ├── app.css │ └── components │ │ ├── button.css │ │ └── form.css ├── js │ ├── Pages │ │ ├── Auth │ │ │ └── Login.jsx │ │ ├── Contacts │ │ │ ├── Create.jsx │ │ │ ├── Edit.jsx │ │ │ └── Index.jsx │ │ ├── Dashboard │ │ │ └── Index.jsx │ │ ├── Error.jsx │ │ ├── Organizations │ │ │ ├── Create.jsx │ │ │ ├── Edit.jsx │ │ │ └── Index.jsx │ │ ├── Reports │ │ │ └── Index.jsx │ │ └── Users │ │ │ ├── Create.jsx │ │ │ ├── Edit.jsx │ │ │ └── Index.jsx │ ├── Shared │ │ ├── BottomHeader.jsx │ │ ├── DeleteButton.jsx │ │ ├── FileInput.jsx │ │ ├── FlashMessages.jsx │ │ ├── Icon.jsx │ │ ├── Layout.jsx │ │ ├── LoadingButton.jsx │ │ ├── Logo.jsx │ │ ├── MainMenu.jsx │ │ ├── MainMenuItem.jsx │ │ ├── Pagination.jsx │ │ ├── SearchFilter.jsx │ │ ├── SelectInput.jsx │ │ ├── TextInput.jsx │ │ ├── TopHeader.jsx │ │ └── TrashedMessage.jsx │ ├── app.jsx │ └── utils.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ └── app.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── screenshot.png ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── ContactsTest.php │ ├── OrganizationsTest.php │ └── UsersTest.php └── TestCase.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 public/ 2 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ContactsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Controllers/ContactsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Controllers/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ImagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Controllers/ImagesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/OrganizationsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Controllers/OrganizationsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ReportsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Controllers/ReportsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Controllers/UsersController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/ContactStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Requests/ContactStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ContactUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Requests/ContactUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/OrganizationStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Requests/OrganizationStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/OrganizationUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Requests/OrganizationUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UserDeleteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Requests/UserDeleteRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UserStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Requests/UserStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UserUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Requests/UserUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/ContactCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Resources/ContactCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/ContactResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Resources/ContactResource.php -------------------------------------------------------------------------------- /app/Http/Resources/OrganizationCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Resources/OrganizationCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/OrganizationResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Resources/OrganizationResource.php -------------------------------------------------------------------------------- /app/Http/Resources/UserCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Resources/UserCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/UserOrganizationCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Resources/UserOrganizationCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Http/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Models/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Models/Account.php -------------------------------------------------------------------------------- /app/Models/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Models/Contact.php -------------------------------------------------------------------------------- /app/Models/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Models/Model.php -------------------------------------------------------------------------------- /app/Models/Organization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Models/Organization.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Traits/LockedDemoUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/app/Traits/LockedDemoUser.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/sentry.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ContactFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/database/factories/ContactFactory.php -------------------------------------------------------------------------------- /database/factories/OrganizationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/database/factories/OrganizationFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2019_03_05_000000_create_accounts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/database/migrations/2019_03_05_000000_create_accounts_table.php -------------------------------------------------------------------------------- /database/migrations/2019_03_05_000000_create_contacts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/database/migrations/2019_03_05_000000_create_contacts_table.php -------------------------------------------------------------------------------- /database/migrations/2019_03_05_000000_create_organizations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/database/migrations/2019_03_05_000000_create_organizations_table.php -------------------------------------------------------------------------------- /database/migrations/2019_03_05_000000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/database/migrations/2019_03_05_000000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_03_05_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/database/migrations/2019_03_05_000000_create_users_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/readme.md -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/components/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/css/components/button.css -------------------------------------------------------------------------------- /resources/css/components/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/css/components/form.css -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Auth/Login.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Contacts/Create.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Contacts/Create.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Contacts/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Contacts/Edit.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Contacts/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Contacts/Index.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Dashboard/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Dashboard/Index.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Error.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Organizations/Create.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Organizations/Create.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Organizations/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Organizations/Edit.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Organizations/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Organizations/Index.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Reports/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Reports/Index.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Users/Create.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Users/Create.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Users/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Users/Edit.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Users/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Pages/Users/Index.jsx -------------------------------------------------------------------------------- /resources/js/Shared/BottomHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/BottomHeader.jsx -------------------------------------------------------------------------------- /resources/js/Shared/DeleteButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/DeleteButton.jsx -------------------------------------------------------------------------------- /resources/js/Shared/FileInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/FileInput.jsx -------------------------------------------------------------------------------- /resources/js/Shared/FlashMessages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/FlashMessages.jsx -------------------------------------------------------------------------------- /resources/js/Shared/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/Icon.jsx -------------------------------------------------------------------------------- /resources/js/Shared/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/Layout.jsx -------------------------------------------------------------------------------- /resources/js/Shared/LoadingButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/LoadingButton.jsx -------------------------------------------------------------------------------- /resources/js/Shared/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/Logo.jsx -------------------------------------------------------------------------------- /resources/js/Shared/MainMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/MainMenu.jsx -------------------------------------------------------------------------------- /resources/js/Shared/MainMenuItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/MainMenuItem.jsx -------------------------------------------------------------------------------- /resources/js/Shared/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/Pagination.jsx -------------------------------------------------------------------------------- /resources/js/Shared/SearchFilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/SearchFilter.jsx -------------------------------------------------------------------------------- /resources/js/Shared/SelectInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/SelectInput.jsx -------------------------------------------------------------------------------- /resources/js/Shared/TextInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/TextInput.jsx -------------------------------------------------------------------------------- /resources/js/Shared/TopHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/TopHeader.jsx -------------------------------------------------------------------------------- /resources/js/Shared/TrashedMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/Shared/TrashedMessage.jsx -------------------------------------------------------------------------------- /resources/js/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/app.jsx -------------------------------------------------------------------------------- /resources/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/js/utils.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/routes/web.php -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/screenshot.png -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ContactsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/tests/Feature/ContactsTest.php -------------------------------------------------------------------------------- /tests/Feature/OrganizationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/tests/Feature/OrganizationsTest.php -------------------------------------------------------------------------------- /tests/Feature/UsersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/tests/Feature/UsersTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemio87/pingcrm-react18-laravel10/HEAD/vite.config.js --------------------------------------------------------------------------------