40 lines
749 B
PHP
40 lines
749 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
/**
|
|
* Create a new controller instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
/*public function __construct()
|
|
{
|
|
$this->middleware('auth');
|
|
}*/
|
|
|
|
/**
|
|
* Show the application dashboard.
|
|
*
|
|
* @return \Illuminate\Contracts\Support\Renderable
|
|
*/
|
|
public function index()
|
|
{
|
|
if (auth()->user()) {
|
|
return redirect(route('home'));
|
|
}
|
|
return view('index');
|
|
}
|
|
|
|
public function home()
|
|
{
|
|
$friends = Auth::user()->getFriends($perPage = 3);
|
|
|
|
return view('home')->with('friends', $friends);
|
|
}
|
|
}
|