diff --git a/app/Http/routes.php b/app/Http/routes.php index 7a8cbf9e..62eee814 100644 --- a/app/Http/routes.php +++ b/app/Http/routes.php @@ -160,42 +160,42 @@ Route::group( 'uses' => 'EventViewController@showEventHomePreview', ]); - Route::get('{event_id}/checkout/date',[ + Route::get('/{event_id}/checkout/date',[ 'as' => 'postValidateDate', 'uses' => 'EventCheckoutController@postValidateDate' ]); - Route::post('{event_id}/checkout/', [ + Route::post('/{event_id}/checkout/', [ 'as' => 'postValidateTickets', 'uses' => 'EventCheckoutController@postValidateSeats', ]); - Route::post('{event_id}/checkout/validate', [ + Route::post('/{event_id}/checkout/validate', [ 'as' => 'postValidateOrder', 'uses' => 'EventCheckoutController@postValidateOrder', ]); - Route::get('{event_id}/checkout/payment', [ + Route::get('/{event_id}/checkout/payment', [ 'as' => 'showEventPayment', 'uses' => 'EventCheckoutController@showEventPayment', ]); - Route::get('{event_id}/checkout/create', [ + Route::get('/{event_id}/checkout/create', [ 'as' => 'showEventCheckout', 'uses' => 'EventCheckoutController@showEventCheckout', ]); - Route::get('{event_id}/checkout/finish', [ + Route::get('/{event_id}/checkout/finish', [ 'as' => 'showEventCheckoutPaymentReturn', 'uses' => 'EventCheckoutController@showEventCheckoutPaymentReturn', ]); - Route::get('{event_id}/checkout/finish_mobile', [ + Route::get('/{event_id}/checkout/finish_mobile', [ 'as' => 'mobileCheckoutPaymentReturn', 'uses' => 'EventCheckoutController@mobileCheckoutPaymentReturn', ]); - Route::post('{event_id}/checkout/create', [ + Route::post('/{event_id}/checkout/create', [ 'as' => 'postCreateOrder', 'uses' => 'EventCheckoutController@postCreateOrder', ]); diff --git a/public/assets/stylesheet/custom.css b/public/assets/stylesheet/custom.css index 4277c4e0..c56e5030 100644 --- a/public/assets/stylesheet/custom.css +++ b/public/assets/stylesheet/custom.css @@ -1909,7 +1909,7 @@ input.reserved-seats ~ label svg { .category-filter li a{ padding-left: 0; - padding-right: 30px; + padding-right: 15px; } .category-filter li a.active{ @@ -1925,7 +1925,7 @@ input.reserved-seats ~ label svg { } .calendar-form .gj-datepicker{ - width: 200px; + width: 70px; margin: 0 10px; }