├── .gitignore ├── Makefile ├── README.md ├── composer.dockerfile ├── design ├── ShopDirectory.excalidraw └── ShopDirectory.png ├── docker-compose.yml ├── nginx.dockerfile ├── nginx ├── default.conf └── nginx.conf ├── php.dockerfile ├── php └── www.conf ├── src ├── .babelrc ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Controller.php │ │ │ ├── FloorController.php │ │ │ └── HomeController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── EncryptCookies.php │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustHosts.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Models │ │ ├── Floor.php │ │ ├── Tenant.php │ │ ├── User.php │ │ └── Zone.php │ └── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.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 │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ ├── FloorFactory.php │ │ ├── TenantFactory.php │ │ ├── UserFactory.php │ │ └── ZoneFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ ├── 2020_10_17_101123_create_zones_floors_table.php │ │ └── 2020_10_17_102610_create_tenants_table.php │ └── seeders │ │ ├── DatabaseSeeder.php │ │ └── ZoneSeeder.php ├── package.json ├── phpunit.xml ├── prettier.config.js ├── public │ ├── .htaccess │ ├── css │ │ └── app.css │ ├── favicon.ico │ ├── index.php │ ├── js │ │ ├── 0.js │ │ ├── 1.js │ │ ├── 2.js │ │ ├── app.js │ │ └── app.js.LICENSE.txt │ ├── mix-manifest.json │ ├── robots.txt │ └── web.config ├── resources │ ├── css │ │ └── app.css │ ├── js │ │ ├── app.tsx │ │ ├── bootstrap.js │ │ └── src │ │ │ ├── Pages │ │ │ ├── Floor │ │ │ │ └── index.tsx │ │ │ └── Home │ │ │ │ └── index.tsx │ │ │ ├── components │ │ │ ├── FloorLists │ │ │ │ └── index.tsx │ │ │ ├── Layout │ │ │ │ └── index.tsx │ │ │ ├── Navbar │ │ │ │ └── index.tsx │ │ │ └── TentantCard │ │ │ │ └── index.tsx │ │ │ └── types │ │ │ ├── @inertiajs │ │ │ ├── inertia-react │ │ │ │ └── index.d.ts │ │ │ └── progress │ │ │ │ └── index.d.ts │ │ │ └── ShopDirectory │ │ │ └── type.d.ts │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ └── app.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 ├── tailwind.config.js ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php ├── tsconfig.json ├── webpack.mix.js └── yarn.lock └── yarn.dockerfile /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/README.md -------------------------------------------------------------------------------- /composer.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/composer.dockerfile -------------------------------------------------------------------------------- /design/ShopDirectory.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/design/ShopDirectory.excalidraw -------------------------------------------------------------------------------- /design/ShopDirectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/design/ShopDirectory.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/nginx.dockerfile -------------------------------------------------------------------------------- /nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/nginx/default.conf -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /php.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/php.dockerfile -------------------------------------------------------------------------------- /php/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/php/www.conf -------------------------------------------------------------------------------- /src/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/.babelrc -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/.env.example -------------------------------------------------------------------------------- /src/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/.gitattributes -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/.styleci.yml -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/README.md -------------------------------------------------------------------------------- /src/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Console/Kernel.php -------------------------------------------------------------------------------- /src/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /src/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /src/app/Http/Controllers/FloorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Http/Controllers/FloorController.php -------------------------------------------------------------------------------- /src/app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /src/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Http/Kernel.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /src/app/Models/Floor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Models/Floor.php -------------------------------------------------------------------------------- /src/app/Models/Tenant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Models/Tenant.php -------------------------------------------------------------------------------- /src/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Models/User.php -------------------------------------------------------------------------------- /src/app/Models/Zone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Models/Zone.php -------------------------------------------------------------------------------- /src/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/artisan -------------------------------------------------------------------------------- /src/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/bootstrap/app.php -------------------------------------------------------------------------------- /src/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/composer.json -------------------------------------------------------------------------------- /src/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/composer.lock -------------------------------------------------------------------------------- /src/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/app.php -------------------------------------------------------------------------------- /src/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/auth.php -------------------------------------------------------------------------------- /src/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/broadcasting.php -------------------------------------------------------------------------------- /src/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/cache.php -------------------------------------------------------------------------------- /src/config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/cors.php -------------------------------------------------------------------------------- /src/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/database.php -------------------------------------------------------------------------------- /src/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/filesystems.php -------------------------------------------------------------------------------- /src/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/hashing.php -------------------------------------------------------------------------------- /src/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/logging.php -------------------------------------------------------------------------------- /src/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/mail.php -------------------------------------------------------------------------------- /src/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/queue.php -------------------------------------------------------------------------------- /src/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/services.php -------------------------------------------------------------------------------- /src/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/session.php -------------------------------------------------------------------------------- /src/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/config/view.php -------------------------------------------------------------------------------- /src/database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/database/.gitignore -------------------------------------------------------------------------------- /src/database/factories/FloorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/database/factories/FloorFactory.php -------------------------------------------------------------------------------- /src/database/factories/TenantFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/database/factories/TenantFactory.php -------------------------------------------------------------------------------- /src/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/database/factories/UserFactory.php -------------------------------------------------------------------------------- /src/database/factories/ZoneFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/database/factories/ZoneFactory.php -------------------------------------------------------------------------------- /src/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /src/database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /src/database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /src/database/migrations/2020_10_17_101123_create_zones_floors_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/database/migrations/2020_10_17_101123_create_zones_floors_table.php -------------------------------------------------------------------------------- /src/database/migrations/2020_10_17_102610_create_tenants_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/database/migrations/2020_10_17_102610_create_tenants_table.php -------------------------------------------------------------------------------- /src/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /src/database/seeders/ZoneSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/database/seeders/ZoneSeeder.php -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/package.json -------------------------------------------------------------------------------- /src/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/phpunit.xml -------------------------------------------------------------------------------- /src/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/prettier.config.js -------------------------------------------------------------------------------- /src/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/public/.htaccess -------------------------------------------------------------------------------- /src/public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/public/css/app.css -------------------------------------------------------------------------------- /src/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/public/index.php -------------------------------------------------------------------------------- /src/public/js/0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/public/js/0.js -------------------------------------------------------------------------------- /src/public/js/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/public/js/1.js -------------------------------------------------------------------------------- /src/public/js/2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/public/js/2.js -------------------------------------------------------------------------------- /src/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/public/js/app.js -------------------------------------------------------------------------------- /src/public/js/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/public/js/app.js.LICENSE.txt -------------------------------------------------------------------------------- /src/public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/public/mix-manifest.json -------------------------------------------------------------------------------- /src/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/public/web.config -------------------------------------------------------------------------------- /src/resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/css/app.css -------------------------------------------------------------------------------- /src/resources/js/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/js/app.tsx -------------------------------------------------------------------------------- /src/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/js/bootstrap.js -------------------------------------------------------------------------------- /src/resources/js/src/Pages/Floor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/js/src/Pages/Floor/index.tsx -------------------------------------------------------------------------------- /src/resources/js/src/Pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/js/src/Pages/Home/index.tsx -------------------------------------------------------------------------------- /src/resources/js/src/components/FloorLists/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/js/src/components/FloorLists/index.tsx -------------------------------------------------------------------------------- /src/resources/js/src/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/js/src/components/Layout/index.tsx -------------------------------------------------------------------------------- /src/resources/js/src/components/Navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/js/src/components/Navbar/index.tsx -------------------------------------------------------------------------------- /src/resources/js/src/components/TentantCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/js/src/components/TentantCard/index.tsx -------------------------------------------------------------------------------- /src/resources/js/src/types/@inertiajs/inertia-react/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/js/src/types/@inertiajs/inertia-react/index.d.ts -------------------------------------------------------------------------------- /src/resources/js/src/types/@inertiajs/progress/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "@inertiajs/progress"; 2 | -------------------------------------------------------------------------------- /src/resources/js/src/types/ShopDirectory/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/js/src/types/ShopDirectory/type.d.ts -------------------------------------------------------------------------------- /src/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/lang/en/auth.php -------------------------------------------------------------------------------- /src/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /src/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /src/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/lang/en/validation.php -------------------------------------------------------------------------------- /src/resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/resources/views/app.blade.php -------------------------------------------------------------------------------- /src/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/routes/api.php -------------------------------------------------------------------------------- /src/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/routes/channels.php -------------------------------------------------------------------------------- /src/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/routes/console.php -------------------------------------------------------------------------------- /src/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/routes/web.php -------------------------------------------------------------------------------- /src/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/server.php -------------------------------------------------------------------------------- /src/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /src/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/storage/framework/.gitignore -------------------------------------------------------------------------------- /src/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /src/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/tailwind.config.js -------------------------------------------------------------------------------- /src/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/tests/CreatesApplication.php -------------------------------------------------------------------------------- /src/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /src/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/tests/TestCase.php -------------------------------------------------------------------------------- /src/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/webpack.mix.js -------------------------------------------------------------------------------- /src/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/src/yarn.lock -------------------------------------------------------------------------------- /yarn.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arryanggaputra/laravel-shop-directory/HEAD/yarn.dockerfile --------------------------------------------------------------------------------