2016-07-21 22:01:57 +08:00
|
|
|
<?php
|
|
|
|
|
2016-08-28 10:05:21 +08:00
|
|
|
namespace App\Http\Controllers;
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-09-04 15:35:12 +08:00
|
|
|
class HomeController extends Controller
|
2016-07-21 22:01:57 +08:00
|
|
|
{
|
2018-07-20 14:42:43 +08:00
|
|
|
public function index()
|
2016-07-21 22:01:57 +08:00
|
|
|
{
|
2018-07-20 14:42:43 +08:00
|
|
|
return view('index')->with('user', auth()->user())
|
2017-08-05 14:35:28 +08:00
|
|
|
->with('home_pic_url', option('home_pic_url') ?: config('options.home_pic_url'));
|
2016-07-21 22:01:57 +08:00
|
|
|
}
|
|
|
|
}
|