diff --git a/app/Services/EventOrderService.php b/app/Services/EventOrderService.php index 4cfe355d..da8e43cf 100644 --- a/app/Services/EventOrderService.php +++ b/app/Services/EventOrderService.php @@ -22,7 +22,7 @@ class EventOrderService /** * @var float */ - private $totalBookingFee; + public $totalBookingFee; /** * @var Event diff --git a/database/migrations/2020_03_31_135621_alter_add_expects_payment_to_reserved_tickets_table.php b/database/migrations/2020_03_31_135621_alter_add_expects_payment_to_reserved_tickets_table.php index 86a0c358..8fbdc05b 100644 --- a/database/migrations/2020_03_31_135621_alter_add_expects_payment_to_reserved_tickets_table.php +++ b/database/migrations/2020_03_31_135621_alter_add_expects_payment_to_reserved_tickets_table.php @@ -26,7 +26,7 @@ class AlterAddExpectsPaymentToReservedTicketsTable extends Migration public function down() { Schema::table('reserved_tickets', function (Blueprint $table) { - $table->dropColumn('expexts_payment_at'); + $table->dropColumn('expects_payment_at'); }); } } diff --git a/resources/views/desktop/Partials/CreateOrderSection.blade.php b/resources/views/desktop/Partials/CreateOrderSection.blade.php index a3a27647..5b5442d3 100644 --- a/resources/views/desktop/Partials/CreateOrderSection.blade.php +++ b/resources/views/desktop/Partials/CreateOrderSection.blade.php @@ -209,7 +209,7 @@