update confirmation and transfer page

- update booking controller
This commit is contained in:
Mohd Arief
2018-06-28 15:40:27 +08:00
parent fd5883c747
commit 651f762237
5 changed files with 415 additions and 94 deletions
@@ -15,7 +15,6 @@ class RenameBookingForeignkeyInPoTable extends Migration
{
Schema::table('purchase_orders', function($table)
{
$table->dropForeign('book_id');
$table->integer('booking_id')->unsigned();
$table->foreign('booking_id')->references('id')->on('bookings');
});
+1 -1
View File
@@ -17,6 +17,6 @@ class DatabaseSeeder extends Seeder
$this->call(UserRoleSeeder::class);
$this->call(RateTableSeeder::class);
$this->call(BookTableSeeder::class);
$this->call(CreditTableSeeder::class);
$this->call(SettingCreditSeeder::class);
}
}