]> _ Git - ccv-email.git/commit
Web app for generating and sending custom e-mails. WIP #4244 @8
authorStephen Cameron <stephen@cubedesigners.com>
Tue, 9 Mar 2021 18:10:06 +0000 (19:10 +0100)
committerStephen Cameron <stephen@cubedesigners.com>
Tue, 9 Mar 2021 18:10:06 +0000 (19:10 +0100)
commitc468fddf03d297df427e54a4ac7021d38cad4a01
treeaade9ef9b847d6dafb324732cc685d3a7c08b976
Web app for generating and sending custom e-mails. WIP #4244 @8
87 files changed:
.editorconfig [new file with mode: 0644]
.gitattributes [new file with mode: 0644]
.gitignore [new file with mode: 0644]
.styleci.yml [new file with mode: 0644]
app/Console/Kernel.php [new file with mode: 0644]
app/Exceptions/Handler.php [new file with mode: 0644]
app/Http/Controllers/Controller.php [new file with mode: 0644]
app/Http/Controllers/EmailController.php [new file with mode: 0644]
app/Http/Kernel.php [new file with mode: 0644]
app/Http/Middleware/Authenticate.php [new file with mode: 0644]
app/Http/Middleware/EncryptCookies.php [new file with mode: 0644]
app/Http/Middleware/HttpBasicAuth.php [new file with mode: 0644]
app/Http/Middleware/PreventRequestsDuringMaintenance.php [new file with mode: 0644]
app/Http/Middleware/RedirectIfAuthenticated.php [new file with mode: 0644]
app/Http/Middleware/TrimStrings.php [new file with mode: 0644]
app/Http/Middleware/TrustHosts.php [new file with mode: 0644]
app/Http/Middleware/TrustProxies.php [new file with mode: 0644]
app/Http/Middleware/VerifyCsrfToken.php [new file with mode: 0644]
app/Mail/Diagnosis.php [new file with mode: 0644]
app/Models/User.php [new file with mode: 0644]
app/Providers/AppServiceProvider.php [new file with mode: 0644]
app/Providers/AuthServiceProvider.php [new file with mode: 0644]
app/Providers/BroadcastServiceProvider.php [new file with mode: 0644]
app/Providers/EventServiceProvider.php [new file with mode: 0644]
app/Providers/RouteServiceProvider.php [new file with mode: 0644]
artisan [new file with mode: 0755]
bootstrap/app.php [new file with mode: 0644]
bootstrap/cache/.gitignore [new file with mode: 0644]
composer.json [new file with mode: 0644]
composer.lock [new file with mode: 0644]
config/app.php [new file with mode: 0644]
config/auth.php [new file with mode: 0644]
config/broadcasting.php [new file with mode: 0644]
config/cache.php [new file with mode: 0644]
config/cors.php [new file with mode: 0644]
config/database.php [new file with mode: 0644]
config/filesystems.php [new file with mode: 0644]
config/hashing.php [new file with mode: 0644]
config/logging.php [new file with mode: 0644]
config/mail.php [new file with mode: 0644]
config/queue.php [new file with mode: 0644]
config/services.php [new file with mode: 0644]
config/session.php [new file with mode: 0644]
config/view.php [new file with mode: 0644]
database/.gitignore [new file with mode: 0644]
database/factories/UserFactory.php [new file with mode: 0644]
database/migrations/2014_10_12_000000_create_users_table.php [new file with mode: 0644]
database/migrations/2014_10_12_100000_create_password_resets_table.php [new file with mode: 0644]
database/migrations/2019_08_19_000000_create_failed_jobs_table.php [new file with mode: 0644]
database/seeders/DatabaseSeeder.php [new file with mode: 0644]
package.json [new file with mode: 0644]
phpunit.xml [new file with mode: 0644]
public/.htaccess [new file with mode: 0644]
public/favicon.ico [new file with mode: 0644]
public/index.php [new file with mode: 0644]
public/robots.txt [new file with mode: 0644]
resources/css/app.css [new file with mode: 0644]
resources/js/app.js [new file with mode: 0644]
resources/js/bootstrap.js [new file with mode: 0644]
resources/lang/en/auth.php [new file with mode: 0644]
resources/lang/en/pagination.php [new file with mode: 0644]
resources/lang/en/passwords.php [new file with mode: 0644]
resources/lang/en/validation.php [new file with mode: 0644]
resources/views/diagnosis/email.blade.php [new file with mode: 0644]
resources/views/diagnosis/form.blade.php [new file with mode: 0644]
resources/views/layouts/app.blade.php [new file with mode: 0644]
resources/views/layouts/email-wrapper.blade.php [new file with mode: 0644]
resources/views/layouts/preview.blade.php [new file with mode: 0644]
routes/api.php [new file with mode: 0644]
routes/channels.php [new file with mode: 0644]
routes/console.php [new file with mode: 0644]
routes/web.php [new file with mode: 0644]
server.php [new file with mode: 0644]
storage/app/.gitignore [new file with mode: 0644]
storage/app/public/.gitignore [new file with mode: 0644]
storage/framework/.gitignore [new file with mode: 0644]
storage/framework/cache/.gitignore [new file with mode: 0644]
storage/framework/cache/data/.gitignore [new file with mode: 0644]
storage/framework/sessions/.gitignore [new file with mode: 0644]
storage/framework/testing/.gitignore [new file with mode: 0644]
storage/framework/views/.gitignore [new file with mode: 0644]
storage/logs/.gitignore [new file with mode: 0644]
tests/CreatesApplication.php [new file with mode: 0644]
tests/Feature/ExampleTest.php [new file with mode: 0644]
tests/TestCase.php [new file with mode: 0644]
tests/Unit/ExampleTest.php [new file with mode: 0644]
webpack.mix.js [new file with mode: 0644]