├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ ├── SettingController.php │ │ └── WishlistController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Setting.php ├── User.php └── Wishlist.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php ├── shopify-app.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2020_06_12_014507_create_settings_table.php │ └── 2020_06_26_110326_create_wishlists_table.php └── seeds │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── img │ └── wishlist-header.svg ├── index.php ├── js │ ├── app.js │ └── codeinspire-app.js ├── mix-manifest.json └── robots.txt ├── resources ├── css │ ├── app.css │ └── custom.css ├── js │ ├── app.js │ ├── bootstrap.js │ └── codeinspire-app.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── components │ └── status.blade.php │ ├── customers.blade.php │ ├── dashboard.blade.php │ ├── partials │ ├── activate-modal.blade.php │ ├── navbar.blade.php │ ├── spinner.blade.php │ └── wishlist-table.blade.php │ ├── products.blade.php │ ├── settings.blade.php │ └── vendor │ └── shopify-app │ ├── auth │ ├── fullpage_redirect.blade.php │ └── index.blade.php │ ├── billing │ ├── error.blade.php │ └── fullpage_redirect.blade.php │ ├── home │ └── index.blade.php │ ├── layouts │ ├── default.blade.php │ └── error.blade.php │ └── partials │ └── flash_messages.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 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Http/Controllers/SettingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/WishlistController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Http/Controllers/WishlistController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Setting.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/User.php -------------------------------------------------------------------------------- /app/Wishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/app/Wishlist.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/session.php -------------------------------------------------------------------------------- /config/shopify-app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/shopify-app.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2020_06_12_014507_create_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/database/migrations/2020_06_12_014507_create_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2020_06_26_110326_create_wishlists_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/database/migrations/2020_06_26_110326_create_wishlists_table.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/wishlist-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/public/img/wishlist-header.svg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/codeinspire-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/public/js/codeinspire-app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/css/custom.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/codeinspire-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/js/codeinspire-app.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/components/status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/components/status.blade.php -------------------------------------------------------------------------------- /resources/views/customers.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/customers.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/partials/activate-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/partials/activate-modal.blade.php -------------------------------------------------------------------------------- /resources/views/partials/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/partials/navbar.blade.php -------------------------------------------------------------------------------- /resources/views/partials/spinner.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/partials/spinner.blade.php -------------------------------------------------------------------------------- /resources/views/partials/wishlist-table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/partials/wishlist-table.blade.php -------------------------------------------------------------------------------- /resources/views/products.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/products.blade.php -------------------------------------------------------------------------------- /resources/views/settings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/settings.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/shopify-app/auth/fullpage_redirect.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/vendor/shopify-app/auth/fullpage_redirect.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/shopify-app/auth/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/vendor/shopify-app/auth/index.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/shopify-app/billing/error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/vendor/shopify-app/billing/error.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/shopify-app/billing/fullpage_redirect.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/vendor/shopify-app/billing/fullpage_redirect.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/shopify-app/home/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/vendor/shopify-app/home/index.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/shopify-app/layouts/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/vendor/shopify-app/layouts/default.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/shopify-app/layouts/error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/vendor/shopify-app/layouts/error.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/shopify-app/partials/flash_messages.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/resources/views/vendor/shopify-app/partials/flash_messages.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/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/Hujjat/Shopify-Laravel-App/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/Hujjat/Shopify-Laravel-App/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hujjat/Shopify-Laravel-App/HEAD/webpack.mix.js --------------------------------------------------------------------------------