diff --git a/Changelog b/Changelog index 41a31321b..97027f52e 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2017-10-06 DariusIII + * Chg: Update services.php with proper user model * Fix: Fix category display on pages * Chg: Update cs of some files, use Category model in Category class 2017-10-05 DariusIII diff --git a/config/services.php b/config/services.php index 4460f0ec2..4b5f04934 100644 --- a/config/services.php +++ b/config/services.php @@ -30,7 +30,7 @@ return [ ], 'stripe' => [ - 'model' => App\User::class, + 'model' => App\Models\User::class, 'key' => env('STRIPE_KEY'), 'secret' => env('STRIPE_SECRET'), ],