mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
13 lines
277 B
PHP
13 lines
277 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return view('index')->with('user', auth()->user())
|
|
->with('home_pic_url', option('home_pic_url') ?: config('options.home_pic_url'));
|
|
}
|
|
}
|