diff --git a/app/Http/Controllers/KuitansiController.php b/app/Http/Controllers/KuitansiController.php new file mode 100644 index 0000000..82cdf7a --- /dev/null +++ b/app/Http/Controllers/KuitansiController.php @@ -0,0 +1,13 @@ +bigIncrements('id'); + $table->string('invoice'); + $table->string('items'); + $table->double('total'); + $table->timestamps(); + $table->softDeletes(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('kuitansi'); + } +} diff --git a/resources/views/kuitansi/index.blade.php b/resources/views/kuitansi/index.blade.php new file mode 100644 index 0000000..e69de29