From abc0b50350564ff94dea58a4ba8a87a0c0dafd92 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Fri, 6 Oct 2017 15:16:32 +0200 Subject: [PATCH] Update services.php with proper user model --- Changelog | 1 + config/services.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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'), ],