├── public
├── favicon.ico
├── robots.txt
├── mix-manifest.json
├── .htaccess
├── web.config
└── index.php
├── bootstrap
├── cache
│ └── .gitignore
└── app.php
├── resources
├── js
│ ├── app.js
│ └── bootstrap.js
├── css
│ └── app.css
├── views
│ ├── vendor
│ │ └── jetstream
│ │ │ └── components
│ │ │ ├── input-error.blade.php
│ │ │ ├── section-border.blade.php
│ │ │ ├── input.blade.php
│ │ │ ├── label.blade.php
│ │ │ ├── dropdown-link.blade.php
│ │ │ ├── section-title.blade.php
│ │ │ ├── authentication-card.blade.php
│ │ │ ├── danger-button.blade.php
│ │ │ ├── button.blade.php
│ │ │ ├── validation-errors.blade.php
│ │ │ ├── secondary-button.blade.php
│ │ │ ├── action-message.blade.php
│ │ │ ├── application-mark.blade.php
│ │ │ ├── action-section.blade.php
│ │ │ ├── dialog-modal.blade.php
│ │ │ ├── authentication-card-logo.blade.php
│ │ │ ├── nav-link.blade.php
│ │ │ ├── responsive-nav-link.blade.php
│ │ │ ├── switchable-team.blade.php
│ │ │ ├── form-section.blade.php
│ │ │ ├── welcome.blade.php
│ │ │ ├── confirmation-modal.blade.php
│ │ │ ├── dropdown.blade.php
│ │ │ ├── confirms-password.blade.php
│ │ │ ├── modal.blade.php
│ │ │ └── application-logo.blade.php
│ ├── api
│ │ └── index.blade.php
│ ├── dashboard.blade.php
│ ├── layouts
│ │ ├── guest.blade.php
│ │ └── app.blade.php
│ ├── auth
│ │ ├── forgot-password.blade.php
│ │ ├── reset-password.blade.php
│ │ ├── verify-email.blade.php
│ │ ├── register.blade.php
│ │ ├── login.blade.php
│ │ └── two-factor-challenge.blade.php
│ ├── profile
│ │ ├── show.blade.php
│ │ ├── update-password-form.blade.php
│ │ ├── delete-user-form.blade.php
│ │ ├── update-profile-information-form.blade.php
│ │ └── two-factor-authentication-form.blade.php
│ ├── users
│ │ └── index.blade.php
│ ├── transactions
│ │ └── index.blade.php
│ ├── food
│ │ └── index.blade.php
│ └── midtrans
│ │ ├── error.blade.php
│ │ └── unfinish.blade.php
└── lang
│ └── en
│ ├── pagination.php
│ ├── auth.php
│ └── passwords.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
└── framework
│ ├── testing
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── cache
│ ├── data
│ │ └── .gitignore
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── database
├── .gitignore
├── seeders
│ └── DatabaseSeeder.php
├── migrations
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2020_09_17_064803_add_roles_to_users_table.php
│ ├── 2020_09_22_105946_change_picture_field.php
│ ├── 2019_08_19_000000_create_failed_jobs_table.php
│ ├── 2020_09_17_054644_create_sessions_table.php
│ ├── 2019_12_14_000001_create_personal_access_tokens_table.php
│ ├── 2020_09_17_052431_create_transactions_table.php
│ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php
│ ├── 2020_09_17_052150_create_food_table.php
│ └── 2014_10_12_000000_create_users_table.php
└── factories
│ └── UserFactory.php
├── .idea
├── sonarlint
│ └── issuestore
│ │ ├── 3
│ │ ├── 3
│ │ │ └── 33cdd3b8c61fc209aab9e9b947a657801b4cfbb3
│ │ └── c
│ │ │ └── 3c84dcdc6bbe3d7817c49dcdc327b926fea1808a
│ │ ├── 6
│ │ └── 7
│ │ │ └── 67cde7ebf0c82e44eedc43a9b83d4fa13c684078
│ │ ├── b
│ │ └── 3
│ │ │ └── b337d07ab0e7d54bf5547a0321a43ecafbd73ec1
│ │ ├── f
│ │ └── 3
│ │ │ └── f3cae797cbcb5410c34784294fca1a1cc4d472a8
│ │ └── index.pb
├── codeStyles
│ └── codeStyleConfig.xml
├── vcs.xml
├── symfony2.xml
├── laravel-plugin.xml
├── modules.xml
└── phpunit.xml
├── .gitattributes
├── tests
├── TestCase.php
├── Unit
│ └── ExampleTest.php
├── Feature
│ └── ExampleTest.php
└── CreatesApplication.php
├── .styleci.yml
├── .gitignore
├── .editorconfig
├── app
├── Http
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── VerifyCsrfToken.php
│ │ ├── TrimStrings.php
│ │ ├── TrustHosts.php
│ │ ├── PreventRequestsDuringMaintenance.php
│ │ ├── TrustProxies.php
│ │ ├── Authenticate.php
│ │ ├── IsAdmin.php
│ │ └── RedirectIfAuthenticated.php
│ ├── Controllers
│ │ ├── DashboardController.php
│ │ ├── Controller.php
│ │ ├── API
│ │ │ ├── FoodController.php
│ │ │ ├── TransactionController.php
│ │ │ └── MidtransController.php
│ │ ├── TransactionController.php
│ │ ├── FoodController.php
│ │ └── UserController.php
│ ├── Requests
│ │ ├── FoodRequest.php
│ │ └── UserRequest.php
│ └── Kernel.php
├── View
│ └── Components
│ │ ├── AppLayout.php
│ │ └── GuestLayout.php
├── Actions
│ ├── Jetstream
│ │ └── DeleteUser.php
│ └── Fortify
│ │ ├── PasswordValidationRules.php
│ │ ├── ResetUserPassword.php
│ │ ├── CreateNewUser.php
│ │ ├── UpdateUserProfileInformation.php
│ │ └── UpdateUserPassword.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ ├── FortifyServiceProvider.php
│ ├── JetstreamServiceProvider.php
│ └── RouteServiceProvider.php
├── Exceptions
│ └── Handler.php
├── Console
│ └── Kernel.php
├── Models
│ ├── Transaction.php
│ ├── Food.php
│ └── User.php
└── Helpers
│ └── ResponseFormatter.php
├── tailwind.config.js
├── routes
├── channels.php
├── console.php
├── api.php
└── web.php
├── server.php
├── webpack.mix.js
├── config
├── cors.php
├── view.php
├── jetstream.php
├── services.php
├── hashing.php
├── sanctum.php
├── broadcasting.php
├── filesystems.php
├── queue.php
├── logging.php
├── fortify.php
├── cache.php
├── mail.php
├── auth.php
└── datatables.php
├── .env.example
├── package.json
├── phpunit.xml
├── artisan
├── composer.json
└── README.md
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/resources/js/app.js:
--------------------------------------------------------------------------------
1 | require('./bootstrap');
2 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 | *.sqlite-journal
3 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/.idea/sonarlint/issuestore/3/3/33cdd3b8c61fc209aab9e9b947a657801b4cfbb3:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.idea/sonarlint/issuestore/3/c/3c84dcdc6bbe3d7817c49dcdc327b926fea1808a:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.idea/sonarlint/issuestore/6/7/67cde7ebf0c82e44eedc43a9b83d4fa13c684078:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.idea/sonarlint/issuestore/b/3/b337d07ab0e7d54bf5547a0321a43ecafbd73ec1:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/mix-manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "/js/app.js": "/js/app.js",
3 | "/css/app.css": "/css/app.css"
4 | }
5 |
--------------------------------------------------------------------------------
/resources/css/app.css:
--------------------------------------------------------------------------------
1 | @import 'tailwindcss/base';
2 | @import 'tailwindcss/components';
3 | @import 'tailwindcss/utilities';
4 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | compiled.php
2 | config.php
3 | down
4 | events.scanned.php
5 | maintenance.php
6 | routes.php
7 | routes.scanned.php
8 | schedule-*
9 | services.json
10 |
--------------------------------------------------------------------------------
/.idea/codeStyles/codeStyleConfig.xml:
--------------------------------------------------------------------------------
1 |
merge(['class' => 'text-sm text-red-600']) }}>{{ $message }}
5 | @enderror 6 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/section-border.blade.php: -------------------------------------------------------------------------------- 1 |6 | {{ $description }} 7 |
8 || ID | 20 |Name | 21 |Roles | 23 |Action | 24 |||
|---|---|---|---|---|---|
| {{ $item->id }} | 30 |{{ $item->name }} | 31 |{{ $item->email }} | 32 |{{ $item->roles }} | 33 |34 | 35 | Edit 36 | 37 | 43 | | 44 ||
| 48 | Data Tidak Ditemukan 49 | | 50 ||||||
| ID | 15 |Food | 16 |User | 17 |Quantity | 18 |Total | 19 |Status | 20 |Action | 21 |
|---|---|---|---|---|---|---|
| {{ $item->id }} | 27 |{{ $item->food->name }} | 28 |{{ $item->user->name }} | 29 |{{ $item->quantity }} | 30 |{{ number_format($item->total) }} | 31 |{{ $item->status }} | 32 |33 | 34 | View 35 | 36 | 42 | | 43 |
| 47 | Data Tidak Ditemukan 48 | | 49 |||||||
| ID | 20 |Name | 21 |Price | 22 |Rate | 23 |Types | 24 |Action | 25 |
|---|---|---|---|---|---|
| {{ $item->id }} | 31 |{{ $item->name }} | 32 |{{ number_format($item->price) }} | 33 |{{ $item->rate }} | 34 |{{ $item->types }} | 35 |36 | 37 | Edit 38 | 39 | 45 | | 46 |
| 50 | Data Tidak Ditemukan 51 | | 52 ||||||
21 | {{ __('When two factor authentication is enabled, you will be prompted for a secure, random token during authentication. You may retrieve this token from your phone\'s Google Authenticator application.') }} 22 |
23 |29 | {{ __('Two factor authentication is now enabled. Scan the following QR code using your phone\'s authenticator application.') }} 30 |
31 |41 | {{ __('Store these recovery codes in a secure password manager. They can be used to recover access to your account if your two factor authentication device is lost.') }} 42 |
43 |
26 | Transaksi Gagal.
Silahkan Tutup Halaman Ini
27 |
26 | Transaksi Sedang Diproses.
Silahkan Tutup Halaman Ini
27 |