├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── Vagrantfile ├── after.sh ├── app ├── Console │ └── Kernel.php ├── EmailAddress.php ├── Events │ ├── FileDeleted.php │ └── ProjectHasNewEmailAddressWithAccessEvent.php ├── Exceptions │ └── Handler.php ├── File.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── Controller.php │ │ └── ProjectController.php │ ├── Kernel.php │ └── Middleware │ │ ├── CheckEmailIsAssociatedWithProject.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Listeners │ └── SendHasAccessToProjectNotification.php ├── Mail │ └── HasAccessToProjectEmail.php ├── Nova │ ├── Actions │ │ └── SendHasAccessToProjectEmail.php │ ├── EmailAddress.php │ ├── Project.php │ ├── ProjectFile.php │ ├── Resource.php │ ├── ReturnedFile.php │ ├── Role.php │ └── User.php ├── Project.php ├── ProjectFile.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── NovaServiceProvider.php │ └── RouteServiceProvider.php ├── ReturnedFile.php └── User.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 ├── nova.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── EmailAddressFactory.php │ ├── ProjectFactory.php │ ├── ProjectFileFactory.php │ ├── ReturnedFileFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2018_08_25_155556_create_permission_tables.php │ ├── 2018_08_25_190956_create_projects_table.php │ ├── 2018_08_25_214948_create_project_files_table.php │ ├── 2018_08_27_200049_create_email_addresses_table.php │ ├── 2018_08_27_204508_create_email_address_project_table.php │ └── 2018_09_01_144711_create_returned_files_table.php └── seeds │ ├── DatabaseSeeder.php │ ├── EmailAddressesTableSeeder.php │ ├── ProjectsTableSeeder.php │ ├── RolesAndPermissionsSeeder.php │ └── UsersTableSeeder.php ├── package.json ├── phpunit.dusk.xml ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── fonts │ ├── nucleo-icons.eot │ ├── nucleo-icons.svg │ ├── nucleo-icons.ttf │ ├── nucleo-icons.woff │ └── nucleo-icons.woff2 ├── index.php ├── js │ └── app.js ├── mix-manifest.json └── robots.txt ├── readme.md ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── core │ │ │ ├── bootstrap.min.js │ │ │ └── popper.min.js │ │ └── plugins │ │ │ └── sweetalert2.min.js │ └── sass │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── emails │ └── has-access-to-project.blade.php │ ├── layouts │ └── app.blade.php │ ├── project │ └── show.blade.php │ ├── shared │ ├── download-files.blade.php │ ├── files-already-uploaded.blade.php │ └── upload-files.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Browser │ ├── Pages │ │ └── Page.php │ ├── ProjectFileAccessTest.php │ ├── console │ │ └── .gitignore │ ├── photos │ │ └── me.jpg │ └── screenshots │ │ └── .gitignore ├── CreatesApplication.php ├── DuskTestCase.php ├── Feature │ ├── DownloadFileTest.php │ ├── Nova │ │ ├── EmailAddresses │ │ │ ├── EmailAddressProjectRelationshipTest.php │ │ │ ├── EmailAddressReturnedFilesRelationshipTest.php │ │ │ └── EmailAddressesResourceTest.php │ │ ├── NovaAccessTest.php │ │ ├── ProjectFiles │ │ │ └── ProjectFileResourceTest.php │ │ ├── Projects │ │ │ ├── ProjectResourceTest.php │ │ │ ├── ProjectReturnedFilesRelationshipTest.php │ │ │ └── SendHasAccessToProjectEmailActionTest.php │ │ ├── ReturnedFiles │ │ │ └── ReturnedFilesResourceTest.php │ │ └── Users │ │ │ ├── RoleResourceTest.php │ │ │ └── UserResourceTest.php │ ├── ProjectAccessTest.php │ ├── ReturnedFileAccessTest.php │ └── ReturnedFileUploadTest.php ├── TestCase.php └── Unit │ ├── Jobs │ ├── FileDeletedEventTest.php │ └── SendHasAccessToProjectNotificationTest.php │ ├── Mail │ └── NotifyHasAccessToProjectEmail.php │ ├── RoleDisplayInNavigationTest.php │ └── UserRoleTest.php ├── webpack.mix.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/LICENSE -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/Vagrantfile -------------------------------------------------------------------------------- /after.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/after.sh -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/EmailAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/EmailAddress.php -------------------------------------------------------------------------------- /app/Events/FileDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Events/FileDeleted.php -------------------------------------------------------------------------------- /app/Events/ProjectHasNewEmailAddressWithAccessEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Events/ProjectHasNewEmailAddressWithAccessEvent.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/File.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProjectController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Controllers/ProjectController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckEmailIsAssociatedWithProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Middleware/CheckEmailIsAssociatedWithProject.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Listeners/SendHasAccessToProjectNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Listeners/SendHasAccessToProjectNotification.php -------------------------------------------------------------------------------- /app/Mail/HasAccessToProjectEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Mail/HasAccessToProjectEmail.php -------------------------------------------------------------------------------- /app/Nova/Actions/SendHasAccessToProjectEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Nova/Actions/SendHasAccessToProjectEmail.php -------------------------------------------------------------------------------- /app/Nova/EmailAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Nova/EmailAddress.php -------------------------------------------------------------------------------- /app/Nova/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Nova/Project.php -------------------------------------------------------------------------------- /app/Nova/ProjectFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Nova/ProjectFile.php -------------------------------------------------------------------------------- /app/Nova/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Nova/Resource.php -------------------------------------------------------------------------------- /app/Nova/ReturnedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Nova/ReturnedFile.php -------------------------------------------------------------------------------- /app/Nova/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Nova/Role.php -------------------------------------------------------------------------------- /app/Nova/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Nova/User.php -------------------------------------------------------------------------------- /app/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Project.php -------------------------------------------------------------------------------- /app/ProjectFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/ProjectFile.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/NovaServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Providers/NovaServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/ReturnedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/ReturnedFile.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/nova.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/nova.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/EmailAddressFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/factories/EmailAddressFactory.php -------------------------------------------------------------------------------- /database/factories/ProjectFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/factories/ProjectFactory.php -------------------------------------------------------------------------------- /database/factories/ProjectFileFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/factories/ProjectFileFactory.php -------------------------------------------------------------------------------- /database/factories/ReturnedFileFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/factories/ReturnedFileFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2018_08_25_155556_create_permission_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/migrations/2018_08_25_155556_create_permission_tables.php -------------------------------------------------------------------------------- /database/migrations/2018_08_25_190956_create_projects_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/migrations/2018_08_25_190956_create_projects_table.php -------------------------------------------------------------------------------- /database/migrations/2018_08_25_214948_create_project_files_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/migrations/2018_08_25_214948_create_project_files_table.php -------------------------------------------------------------------------------- /database/migrations/2018_08_27_200049_create_email_addresses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/migrations/2018_08_27_200049_create_email_addresses_table.php -------------------------------------------------------------------------------- /database/migrations/2018_08_27_204508_create_email_address_project_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/migrations/2018_08_27_204508_create_email_address_project_table.php -------------------------------------------------------------------------------- /database/migrations/2018_09_01_144711_create_returned_files_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/migrations/2018_09_01_144711_create_returned_files_table.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/EmailAddressesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/seeds/EmailAddressesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/ProjectsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/seeds/ProjectsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/RolesAndPermissionsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/seeds/RolesAndPermissionsSeeder.php -------------------------------------------------------------------------------- /database/seeds/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/database/seeds/UsersTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.dusk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/phpunit.dusk.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/public/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /public/fonts/nucleo-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/public/fonts/nucleo-icons.svg -------------------------------------------------------------------------------- /public/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/public/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /public/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/public/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /public/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/public/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/readme.md -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/js/core/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/assets/js/core/bootstrap.min.js -------------------------------------------------------------------------------- /resources/assets/js/core/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/assets/js/core/popper.min.js -------------------------------------------------------------------------------- /resources/assets/js/plugins/sweetalert2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/assets/js/plugins/sweetalert2.min.js -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/emails/has-access-to-project.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/views/emails/has-access-to-project.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/project/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/views/project/show.blade.php -------------------------------------------------------------------------------- /resources/views/shared/download-files.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/views/shared/download-files.blade.php -------------------------------------------------------------------------------- /resources/views/shared/files-already-uploaded.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/views/shared/files-already-uploaded.blade.php -------------------------------------------------------------------------------- /resources/views/shared/upload-files.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/views/shared/upload-files.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.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 | -------------------------------------------------------------------------------- /tests/Browser/Pages/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Browser/Pages/Page.php -------------------------------------------------------------------------------- /tests/Browser/ProjectFileAccessTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Browser/ProjectFileAccessTest.php -------------------------------------------------------------------------------- /tests/Browser/console/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Browser/photos/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Browser/photos/me.jpg -------------------------------------------------------------------------------- /tests/Browser/screenshots/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/DuskTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/DuskTestCase.php -------------------------------------------------------------------------------- /tests/Feature/DownloadFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/DownloadFileTest.php -------------------------------------------------------------------------------- /tests/Feature/Nova/EmailAddresses/EmailAddressProjectRelationshipTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/Nova/EmailAddresses/EmailAddressProjectRelationshipTest.php -------------------------------------------------------------------------------- /tests/Feature/Nova/EmailAddresses/EmailAddressReturnedFilesRelationshipTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/Nova/EmailAddresses/EmailAddressReturnedFilesRelationshipTest.php -------------------------------------------------------------------------------- /tests/Feature/Nova/EmailAddresses/EmailAddressesResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/Nova/EmailAddresses/EmailAddressesResourceTest.php -------------------------------------------------------------------------------- /tests/Feature/Nova/NovaAccessTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/Nova/NovaAccessTest.php -------------------------------------------------------------------------------- /tests/Feature/Nova/ProjectFiles/ProjectFileResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/Nova/ProjectFiles/ProjectFileResourceTest.php -------------------------------------------------------------------------------- /tests/Feature/Nova/Projects/ProjectResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/Nova/Projects/ProjectResourceTest.php -------------------------------------------------------------------------------- /tests/Feature/Nova/Projects/ProjectReturnedFilesRelationshipTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/Nova/Projects/ProjectReturnedFilesRelationshipTest.php -------------------------------------------------------------------------------- /tests/Feature/Nova/Projects/SendHasAccessToProjectEmailActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/Nova/Projects/SendHasAccessToProjectEmailActionTest.php -------------------------------------------------------------------------------- /tests/Feature/Nova/ReturnedFiles/ReturnedFilesResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/Nova/ReturnedFiles/ReturnedFilesResourceTest.php -------------------------------------------------------------------------------- /tests/Feature/Nova/Users/RoleResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/Nova/Users/RoleResourceTest.php -------------------------------------------------------------------------------- /tests/Feature/Nova/Users/UserResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/Nova/Users/UserResourceTest.php -------------------------------------------------------------------------------- /tests/Feature/ProjectAccessTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/ProjectAccessTest.php -------------------------------------------------------------------------------- /tests/Feature/ReturnedFileAccessTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/ReturnedFileAccessTest.php -------------------------------------------------------------------------------- /tests/Feature/ReturnedFileUploadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Feature/ReturnedFileUploadTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/Jobs/FileDeletedEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Unit/Jobs/FileDeletedEventTest.php -------------------------------------------------------------------------------- /tests/Unit/Jobs/SendHasAccessToProjectNotificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Unit/Jobs/SendHasAccessToProjectNotificationTest.php -------------------------------------------------------------------------------- /tests/Unit/Mail/NotifyHasAccessToProjectEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Unit/Mail/NotifyHasAccessToProjectEmail.php -------------------------------------------------------------------------------- /tests/Unit/RoleDisplayInNavigationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Unit/RoleDisplayInNavigationTest.php -------------------------------------------------------------------------------- /tests/Unit/UserRoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/tests/Unit/UserRoleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/webpack.mix.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradenkeith/testing-nova/HEAD/yarn.lock --------------------------------------------------------------------------------