├── public
├── favicon.ico
├── robots.txt
├── mix-manifest.json
├── .htaccess
├── web.config
├── index.php
└── svg
│ ├── 404.svg
│ ├── 503.svg
│ ├── 403.svg
│ └── 500.svg
├── database
├── .gitignore
├── factories
│ ├── CategoryFactory.php
│ ├── TransaksiFactory.php
│ ├── TiketFactory.php
│ └── UserFactory.php
├── seeds
│ └── DatabaseSeeder.php
└── migrations
│ ├── 2019_02_04_130717_create_categories_table.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2019_02_04_134336_tikets_table.php
│ ├── 2019_02_06_151014_create_transaksis_table.php
│ └── 2014_10_12_000000_create_users_table.php
├── bootstrap
├── cache
│ └── .gitignore
└── app.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
└── framework
│ ├── testing
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── cache
│ ├── data
│ │ └── .gitignore
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── Capture.PNG
├── .gitattributes
├── resources
├── views
│ ├── welcome.blade.php
│ ├── kategori
│ │ ├── create.blade.php
│ │ └── index.blade.php
│ ├── card.blade.php
│ ├── home.blade.php
│ ├── auth
│ │ ├── verify.blade.php
│ │ ├── passwords
│ │ │ ├── email.blade.php
│ │ │ └── reset.blade.php
│ │ ├── login.blade.php
│ │ └── register.blade.php
│ └── layouts
│ │ └── app.blade.php
├── sass
│ ├── _variables.scss
│ └── app.scss
├── js
│ ├── components
│ │ ├── ExampleComponent.vue
│ │ ├── Apphome.vue
│ │ ├── Toolbar.vue
│ │ ├── category
│ │ │ ├── CreateCategory.vue
│ │ │ ├── EditCategoryComponent.vue
│ │ │ └── CategoryComponent.vue
│ │ ├── tiket
│ │ │ ├── TiketComponent.vue
│ │ │ ├── EditTiketComponent.vue
│ │ │ └── CreateTiket.vue
│ │ └── transaksi
│ │ │ └── TransaksiComponent.vue
│ ├── Router
│ │ └── router.js
│ ├── app.js
│ └── bootstrap.js
└── lang
│ └── en
│ ├── pagination.php
│ ├── auth.php
│ ├── passwords.php
│ └── validation.php
├── .gitignore
├── tests
├── TestCase.php
├── Unit
│ └── ExampleTest.php
├── Feature
│ └── ExampleTest.php
└── CreatesApplication.php
├── app
├── Http
│ ├── Controllers
│ │ ├── CardController.php
│ │ ├── CategoriesController.php
│ │ ├── Controller.php
│ │ ├── HomeController.php
│ │ ├── Auth
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ ├── ResetPasswordController.php
│ │ │ ├── VerificationController.php
│ │ │ └── RegisterController.php
│ │ ├── Transaksi
│ │ │ └── TransaksiController.php
│ │ ├── Tiket
│ │ │ └── TiketController.php
│ │ └── Category
│ │ │ └── CategoryController.php
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── CheckForMaintenanceMode.php
│ │ ├── TrimStrings.php
│ │ ├── TrustProxies.php
│ │ ├── Authenticate.php
│ │ ├── VerifyCsrfToken.php
│ │ └── RedirectIfAuthenticated.php
│ ├── Resources
│ │ ├── CategoryResource.php
│ │ ├── TransaksiResource.php
│ │ └── TiketResource.php
│ └── Kernel.php
├── Model
│ ├── Transaksi
│ │ └── Transaksi.php
│ ├── Category
│ │ └── Category.php
│ └── Tiket
│ │ └── Tiket.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
├── User.php
├── Console
│ └── Kernel.php
└── Exceptions
│ └── Handler.php
├── readme.md
├── .editorconfig
├── routes
├── api.php
├── channels.php
├── console.php
└── web.php
├── webpack.mix.js
├── server.php
├── .env.example
├── config
├── view.php
├── services.php
├── hashing.php
├── broadcasting.php
├── filesystems.php
├── queue.php
├── logging.php
├── cache.php
├── auth.php
├── database.php
├── mail.php
├── session.php
└── app.php
├── phpunit.xml
├── composer.json
├── artisan
└── package.json
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
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 |
--------------------------------------------------------------------------------
/Capture.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andihoerudin24/laravue_tiket/HEAD/Capture.PNG
--------------------------------------------------------------------------------
/public/mix-manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "/js/app.js": "/js/app.js",
3 | "/css/app.css": "/css/app.css"
4 | }
5 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/resources/views/welcome.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.app')
2 | @section('content')
3 |
|
12 |
13 |
14 |
22 | |
|
24 |
25 |
26 |
30 | |
|
32 | |
| 48 | Nama Tiket 49 | | 50 |51 | Qty | 52 |53 | Harga Tiket 54 | | 55 |56 | Subtotal | 57 |Cancel 58 | | 59 |
|---|---|---|---|---|
| {{transaksis.name_tiket}} | 61 |{{transaksis.qty}} | 62 |{{transaksis.harga_tiket}} | 63 |{{transaksis.total}} | 64 |
65 | |
69 |