diff --git a/routes/web.php b/routes/web.php index 015461f..18c2dc4 100644 --- a/routes/web.php +++ b/routes/web.php @@ -15,7 +15,7 @@ use Illuminate\Support\Facades\Validator; Route::get('catalog', function () { - \Illuminate\Support\Facades\Auth::login(\App\User::where('email', 'engineering@computablefacts.com')->firstOrFail()); + \Illuminate\Support\Facades\Auth::login(\App\User::where('email', config('towerify.admin.email'))->firstOrFail()); $apps = \App\Models\Product::orderBy('name') ->get() ->map(function (\App\Models\Product $product) {