Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Ridwan Hidayat
go-wisata
Commits
0af715d9
Commit
0af715d9
authored
2 years ago
by
Salsabila Fithriyah
Browse files
Options
Download
Email Patches
Plain Diff
type_bayar
parent
98f91436
main
salsabilifee
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
database/migrations/2022_08_11_031837_add_type_bayar_detail_transaksi.php
+30
-0
...ons/2022_08_11_031837_add_type_bayar_detail_transaksi.php
vendor/composer/autoload_classmap.php
+1
-0
vendor/composer/autoload_classmap.php
vendor/composer/autoload_static.php
+1
-0
vendor/composer/autoload_static.php
with
32 additions
and
0 deletions
+32
-0
database/migrations/2022_08_11_031837_add_type_bayar_detail_transaksi.php
0 → 100644
View file @
0af715d9
<?php
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
AddTypeBayarDetailTransaksi
extends
Migration
{
/**
* Run the migrations.
*
* @return void
*/
public
function
up
()
{
Schema
::
table
(
'tb_detailtransaksi'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'type_bayar'
)
->
nullable
();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public
function
down
()
{
//
}
}
This diff is collapsed.
Click to expand it.
vendor/composer/autoload_classmap.php
View file @
0af715d9
...
...
@@ -74,6 +74,7 @@ return array(
'App\\Http\\Middleware\\Desa' => $baseDir . '/app/Http/Middleware/Desa.php',
'App\\Http\\Middleware\\EncryptCookies' => $baseDir . '/app/Http/Middleware/EncryptCookies.php',
'App\\Http\\Middleware\\Event' => $baseDir . '/app/Http/Middleware/Event.php',
'App\\Http\\Middleware\\KatalogMerchandise' => $baseDir . '/app/Http/Middleware/KatalogMerchandise.php',
'App\\Http\\Middleware\\Kuliner' => $baseDir . '/app/Http/Middleware/Kuliner.php',
'App\\Http\\Middleware\\Pelanggan' => $baseDir . '/app/Http/Middleware/Pelanggan.php',
'App\\Http\\Middleware\\Penginapan' => $baseDir . '/app/Http/Middleware/Penginapan.php',
...
...
This diff is collapsed.
Click to expand it.
vendor/composer/autoload_static.php
View file @
0af715d9
...
...
@@ -655,6 +655,7 @@ class ComposerStaticInit44d8859d6a980a712ce8766147fb0c50
'App\\Http\\Middleware\\Desa' => __DIR__ . '/../..' . '/app/Http/Middleware/Desa.php',
'App\\Http\\Middleware\\EncryptCookies' => __DIR__ . '/../..' . '/app/Http/Middleware/EncryptCookies.php',
'App\\Http\\Middleware\\Event' => __DIR__ . '/../..' . '/app/Http/Middleware/Event.php',
'App\\Http\\Middleware\\KatalogMerchandise' => __DIR__ . '/../..' . '/app/Http/Middleware/KatalogMerchandise.php',
'App\\Http\\Middleware\\Kuliner' => __DIR__ . '/../..' . '/app/Http/Middleware/Kuliner.php',
'App\\Http\\Middleware\\Pelanggan' => __DIR__ . '/../..' . '/app/Http/Middleware/Pelanggan.php',
'App\\Http\\Middleware\\Penginapan' => __DIR__ . '/../..' . '/app/Http/Middleware/Penginapan.php',
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help