category page mobilee
This commit is contained in:
parent
79caef8825
commit
89414c4656
|
|
@ -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',
|
||||
]);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue