pixelfed/app/Http/Controllers/AccountController.php

23 wiersze
437 B
PHP
Czysty Zwykły widok Historia

2018-05-26 23:00:07 +00:00
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Auth, Cache;
use App\{Notification, Profile, User};
class AccountController extends Controller
{
public function __construct()
{
$this->middleware('auth');
}
public function notifications(Request $request)
{
$user = Auth::user();
$profile = $user->profile;
return view('account.activity', compact('profile'));
}
}