category page mobilee

This commit is contained in:
merdan 2020-02-20 15:43:47 +05:00
parent 79caef8825
commit 89414c4656
2 changed files with 10 additions and 10 deletions

View File

@ -160,42 +160,42 @@ Route::group(
'uses' => 'EventViewController@showEventHomePreview', 'uses' => 'EventViewController@showEventHomePreview',
]); ]);
Route::get('{event_id}/checkout/date',[ Route::get('/{event_id}/checkout/date',[
'as' => 'postValidateDate', 'as' => 'postValidateDate',
'uses' => 'EventCheckoutController@postValidateDate' 'uses' => 'EventCheckoutController@postValidateDate'
]); ]);
Route::post('{event_id}/checkout/', [ Route::post('/{event_id}/checkout/', [
'as' => 'postValidateTickets', 'as' => 'postValidateTickets',
'uses' => 'EventCheckoutController@postValidateSeats', 'uses' => 'EventCheckoutController@postValidateSeats',
]); ]);
Route::post('{event_id}/checkout/validate', [ Route::post('/{event_id}/checkout/validate', [
'as' => 'postValidateOrder', 'as' => 'postValidateOrder',
'uses' => 'EventCheckoutController@postValidateOrder', 'uses' => 'EventCheckoutController@postValidateOrder',
]); ]);
Route::get('{event_id}/checkout/payment', [ Route::get('/{event_id}/checkout/payment', [
'as' => 'showEventPayment', 'as' => 'showEventPayment',
'uses' => 'EventCheckoutController@showEventPayment', 'uses' => 'EventCheckoutController@showEventPayment',
]); ]);
Route::get('{event_id}/checkout/create', [ Route::get('/{event_id}/checkout/create', [
'as' => 'showEventCheckout', 'as' => 'showEventCheckout',
'uses' => 'EventCheckoutController@showEventCheckout', 'uses' => 'EventCheckoutController@showEventCheckout',
]); ]);
Route::get('{event_id}/checkout/finish', [ Route::get('/{event_id}/checkout/finish', [
'as' => 'showEventCheckoutPaymentReturn', 'as' => 'showEventCheckoutPaymentReturn',
'uses' => 'EventCheckoutController@showEventCheckoutPaymentReturn', 'uses' => 'EventCheckoutController@showEventCheckoutPaymentReturn',
]); ]);
Route::get('{event_id}/checkout/finish_mobile', [ Route::get('/{event_id}/checkout/finish_mobile', [
'as' => 'mobileCheckoutPaymentReturn', 'as' => 'mobileCheckoutPaymentReturn',
'uses' => 'EventCheckoutController@mobileCheckoutPaymentReturn', 'uses' => 'EventCheckoutController@mobileCheckoutPaymentReturn',
]); ]);
Route::post('{event_id}/checkout/create', [ Route::post('/{event_id}/checkout/create', [
'as' => 'postCreateOrder', 'as' => 'postCreateOrder',
'uses' => 'EventCheckoutController@postCreateOrder', 'uses' => 'EventCheckoutController@postCreateOrder',
]); ]);

View File

@ -1909,7 +1909,7 @@ input.reserved-seats ~ label svg {
.category-filter li a{ .category-filter li a{
padding-left: 0; padding-left: 0;
padding-right: 30px; padding-right: 15px;
} }
.category-filter li a.active{ .category-filter li a.active{
@ -1925,7 +1925,7 @@ input.reserved-seats ~ label svg {
} }
.calendar-form .gj-datepicker{ .calendar-form .gj-datepicker{
width: 200px; width: 70px;
margin: 0 10px; margin: 0 10px;
} }