├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── my-first-project.iml ├── php.xml ├── vcs.xml └── workspace.xml ├── README.md ├── app ├── Company.php ├── Console │ ├── Commands │ │ └── AddCompanyCommand.php │ └── Kernel.php ├── Customer.php ├── Events │ └── NewCustomerHasRegisteredEvent.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── ContactFormController.php │ │ ├── Controller.php │ │ ├── CustomersController.php │ │ ├── HomeController.php │ │ ├── TestController.php │ │ └── TestingVueController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TestMiddleware.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Listeners │ ├── NotifyAdminViaSlack.php │ ├── RegisterCustomerToNewsletter.php │ └── WelcomeNewCustomerListener.php ├── Mail │ ├── ContactFormMail.php │ └── WelcomeNewUserMail.php ├── Policies │ └── CustomerPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── RouteServiceProvider.php │ └── TelescopeServiceProvider.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 ├── queue.php ├── services.php ├── session.php ├── telescope.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CompanyFactory.php │ ├── CustomerFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_02_21_200244_create_customers_table.php │ ├── 2019_02_25_230826_create_companies_table.php │ └── 2019_03_18_232347_create_jobs_table.php └── seeds │ ├── CompaniesTableSeeder.php │ ├── CustomersTableSeeder.php │ ├── DatabaseSeeder.php │ └── UsersTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt └── vendor │ └── telescope │ ├── app-dark.css │ ├── app.css │ ├── app.js │ ├── favicon.ico │ └── mix-manifest.json ├── resources ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ └── MyButton.vue ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── about.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── contact │ └── create.blade.php │ ├── customers │ ├── create.blade.php │ ├── edit.blade.php │ ├── form.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── emails │ ├── contact │ │ └── contact-form.blade.php │ └── new-welcome.blade.php │ ├── home.blade.php │ ├── layout.blade.php │ ├── layouts │ └── app.blade.php │ ├── nav.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 │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/my-first-project.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/.idea/my-first-project.iml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/README.md -------------------------------------------------------------------------------- /app/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Company.php -------------------------------------------------------------------------------- /app/Console/Commands/AddCompanyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Console/Commands/AddCompanyCommand.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Customer.php -------------------------------------------------------------------------------- /app/Events/NewCustomerHasRegisteredEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Events/NewCustomerHasRegisteredEvent.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ContactFormController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Controllers/ContactFormController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/CustomersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Controllers/CustomersController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Controllers/TestController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TestingVueController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Controllers/TestingVueController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TestMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Middleware/TestMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Listeners/NotifyAdminViaSlack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Listeners/NotifyAdminViaSlack.php -------------------------------------------------------------------------------- /app/Listeners/RegisterCustomerToNewsletter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Listeners/RegisterCustomerToNewsletter.php -------------------------------------------------------------------------------- /app/Listeners/WelcomeNewCustomerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Listeners/WelcomeNewCustomerListener.php -------------------------------------------------------------------------------- /app/Mail/ContactFormMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Mail/ContactFormMail.php -------------------------------------------------------------------------------- /app/Mail/WelcomeNewUserMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Mail/WelcomeNewUserMail.php -------------------------------------------------------------------------------- /app/Policies/CustomerPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Policies/CustomerPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/TelescopeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/Providers/TelescopeServiceProvider.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/session.php -------------------------------------------------------------------------------- /config/telescope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/telescope.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/CompanyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/database/factories/CompanyFactory.php -------------------------------------------------------------------------------- /database/factories/CustomerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/database/factories/CustomerFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/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/coderstape/laravel-58-from-scratch/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_02_21_200244_create_customers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/database/migrations/2019_02_21_200244_create_customers_table.php -------------------------------------------------------------------------------- /database/migrations/2019_02_25_230826_create_companies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/database/migrations/2019_02_25_230826_create_companies_table.php -------------------------------------------------------------------------------- /database/migrations/2019_03_18_232347_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/database/migrations/2019_03_18_232347_create_jobs_table.php -------------------------------------------------------------------------------- /database/seeds/CompaniesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/database/seeds/CompaniesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/CustomersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/database/seeds/CustomersTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/database/seeds/UsersTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/telescope/app-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/public/vendor/telescope/app-dark.css -------------------------------------------------------------------------------- /public/vendor/telescope/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/public/vendor/telescope/app.css -------------------------------------------------------------------------------- /public/vendor/telescope/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/public/vendor/telescope/app.js -------------------------------------------------------------------------------- /public/vendor/telescope/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/public/vendor/telescope/favicon.ico -------------------------------------------------------------------------------- /public/vendor/telescope/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/public/vendor/telescope/mix-manifest.json -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/MyButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/js/components/MyButton.vue -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/about.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/about.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/contact/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/contact/create.blade.php -------------------------------------------------------------------------------- /resources/views/customers/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/customers/create.blade.php -------------------------------------------------------------------------------- /resources/views/customers/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/customers/edit.blade.php -------------------------------------------------------------------------------- /resources/views/customers/form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/customers/form.blade.php -------------------------------------------------------------------------------- /resources/views/customers/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/customers/index.blade.php -------------------------------------------------------------------------------- /resources/views/customers/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/customers/show.blade.php -------------------------------------------------------------------------------- /resources/views/emails/contact/contact-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/emails/contact/contact-form.blade.php -------------------------------------------------------------------------------- /resources/views/emails/new-welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/emails/new-welcome.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/layout.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/nav.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/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/coderstape/laravel-58-from-scratch/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 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/webpack.mix.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderstape/laravel-58-from-scratch/HEAD/yarn.lock --------------------------------------------------------------------------------