@@ -127,23 +127,23 @@ |
||
| 127 | 127 | public static function getParametersArray($card) |
| 128 | 128 | { |
| 129 | 129 | $ret = [ |
| 130 | - 'img_col_size_class' => 'col-md-'.$card->img_col_size, |
|
| 131 | - 'text_col_size_class' => 'col-md-'.(12 - $card->img_col_size), |
|
| 132 | - 'bkg_color' => 'background-color: '.$card->bkg_color.';', |
|
| 133 | - 'text_color' => 'color: '.$card->text_color.';', |
|
| 134 | - 'container_wrap' => ($card->container_wrap == 'true') ? 1 : 0, |
|
| 135 | - ]; |
|
| 130 | + 'img_col_size_class' => 'col-md-'.$card->img_col_size, |
|
| 131 | + 'text_col_size_class' => 'col-md-'.(12 - $card->img_col_size), |
|
| 132 | + 'bkg_color' => 'background-color: '.$card->bkg_color.';', |
|
| 133 | + 'text_color' => 'color: '.$card->text_color.';', |
|
| 134 | + 'container_wrap' => ($card->container_wrap == 'true') ? 1 : 0, |
|
| 135 | + ]; |
|
| 136 | 136 | |
| 137 | 137 | switch ($card->img_alignment) { |
| 138 | - case 'left': |
|
| 138 | + case 'left': |
|
| 139 | 139 | $ret['img_col_order_class'] = 'order-md-1'; |
| 140 | - $ret['text_col_order_class'] = 'order-md-2'; |
|
| 141 | - break; |
|
| 142 | - case 'right': |
|
| 140 | + $ret['text_col_order_class'] = 'order-md-2'; |
|
| 141 | + break; |
|
| 142 | + case 'right': |
|
| 143 | 143 | $ret['img_col_order_class'] = 'order-md-2'; |
| 144 | - $ret['text_col_order_class'] = 'order-md-1'; |
|
| 145 | - break; |
|
| 146 | - } |
|
| 144 | + $ret['text_col_order_class'] = 'order-md-1'; |
|
| 145 | + break; |
|
| 146 | + } |
|
| 147 | 147 | |
| 148 | 148 | return $ret; |
| 149 | 149 | } |
@@ -49,9 +49,9 @@ discard block |
||
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | return view('laravel-cards::cards.index', compact('cards')) |
| 52 | - ->with('i', (request()->input('page', 1) - 1) * 20) |
|
| 53 | - ->with('searchKeywords', $searchKeywords) |
|
| 54 | - ->with('countriesAvailableForTranslations', $countriesAvailableForTranslations); |
|
| 52 | + ->with('i', (request()->input('page', 1) - 1) * 20) |
|
| 53 | + ->with('searchKeywords', $searchKeywords) |
|
| 54 | + ->with('countriesAvailableForTranslations', $countriesAvailableForTranslations); |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | /***************************************************************************/ |
@@ -206,27 +206,27 @@ discard block |
||
| 206 | 206 | public static function getButtonColorArray() |
| 207 | 207 | { |
| 208 | 208 | $ret = [ |
| 209 | - 'press-red' => 'Red', |
|
| 210 | - 'press-pink' => 'Pink', |
|
| 211 | - 'press-purple' => 'Purple', |
|
| 212 | - 'press-deeppurple' => 'Deep purple', |
|
| 213 | - 'press-indigo' => 'Indigo', |
|
| 214 | - 'press-blue' => 'Blue', |
|
| 215 | - 'press-lightblue' => 'Light blue', |
|
| 216 | - 'press-cyan' => 'Cyan', |
|
| 217 | - 'press-teal' => 'Teal', |
|
| 218 | - 'press-green' => 'Green', |
|
| 219 | - 'press-lightgreen' => 'Light green', |
|
| 220 | - 'press-lime' => 'Lime', |
|
| 221 | - 'press-yellow' => 'Yellow', |
|
| 222 | - 'press-amber' => 'Amber', |
|
| 223 | - 'press-orange' => 'Orange', |
|
| 224 | - 'press-deeporange' => 'Deeporange', |
|
| 225 | - 'press-brown' => 'Brown', |
|
| 226 | - 'press-grey' => 'Grey', |
|
| 227 | - 'press-bluegrey' => 'Blue grey', |
|
| 228 | - 'press-black' => 'Black', |
|
| 229 | - ]; |
|
| 209 | + 'press-red' => 'Red', |
|
| 210 | + 'press-pink' => 'Pink', |
|
| 211 | + 'press-purple' => 'Purple', |
|
| 212 | + 'press-deeppurple' => 'Deep purple', |
|
| 213 | + 'press-indigo' => 'Indigo', |
|
| 214 | + 'press-blue' => 'Blue', |
|
| 215 | + 'press-lightblue' => 'Light blue', |
|
| 216 | + 'press-cyan' => 'Cyan', |
|
| 217 | + 'press-teal' => 'Teal', |
|
| 218 | + 'press-green' => 'Green', |
|
| 219 | + 'press-lightgreen' => 'Light green', |
|
| 220 | + 'press-lime' => 'Lime', |
|
| 221 | + 'press-yellow' => 'Yellow', |
|
| 222 | + 'press-amber' => 'Amber', |
|
| 223 | + 'press-orange' => 'Orange', |
|
| 224 | + 'press-deeporange' => 'Deeporange', |
|
| 225 | + 'press-brown' => 'Brown', |
|
| 226 | + 'press-grey' => 'Grey', |
|
| 227 | + 'press-bluegrey' => 'Blue grey', |
|
| 228 | + 'press-black' => 'Black', |
|
| 229 | + ]; |
|
| 230 | 230 | |
| 231 | 231 | return $ret; |
| 232 | 232 | } |