@@ -21,12 +21,12 @@ discard block |
||
| 21 | 21 | $this->loadRoutesFrom(__DIR__.'/../routes/web.php'); |
| 22 | 22 | $this->app['router']->aliasMiddleware('admin', \DavideCasiraghi\LaravelCards\Http\Middleware\Admin::class); |
| 23 | 23 | |
| 24 | - if (! class_exists('CreateCardsTable')) { |
|
| 24 | + if (!class_exists('CreateCardsTable')) { |
|
| 25 | 25 | $this->publishes([ |
| 26 | 26 | __DIR__.'/../database/migrations/create_cards_table.php.stub' => database_path('migrations/'.Carbon::now()->format('Y_m_d_Hmsu').'_create_cards_table.php'), |
| 27 | 27 | ], 'migrations'); |
| 28 | 28 | } |
| 29 | - if (! class_exists('CreateCardTranslationsTable')) { |
|
| 29 | + if (!class_exists('CreateCardTranslationsTable')) { |
|
| 30 | 30 | $this->publishes([ |
| 31 | 31 | __DIR__.'/../database/migrations/create_card_translations_table.php.stub' => database_path('migrations/'.Carbon::now()->format('Y_m_d_Hmsu').'_create_card_translations_table.php'), |
| 32 | 32 | ], 'migrations'); |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'laravel-cards'); |
| 71 | 71 | |
| 72 | 72 | // Register the main class to use with the facade |
| 73 | - $this->app->singleton('laravel-cards', function () { |
|
| 73 | + $this->app->singleton('laravel-cards', function() { |
|
| 74 | 74 | return new LaravelCards; |
| 75 | 75 | }); |
| 76 | 76 | } |
@@ -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 | } |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | // https://stackoverflow.com/questions/51611015/authuser-return-null-5-6 |
| 17 | 17 | public function __construct() |
| 18 | 18 | { |
| 19 | - $this->middleware(function ($request, $next) { |
|
| 19 | + $this->middleware(function($request, $next) { |
|
| 20 | 20 | $this->user = Auth::user(); |
| 21 | 21 | |
| 22 | 22 | return $next($request); |