mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-25 07:45:22 +00:00
Update ProfileController
This commit is contained in:
parent
b3540f189d
commit
184097893e
1 changed files with 7 additions and 1 deletions
|
@ -3,8 +3,14 @@
|
|||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\{Profile};
|
||||
|
||||
class ProfileController extends Controller
|
||||
{
|
||||
//
|
||||
public function show(Request $request, $username)
|
||||
{
|
||||
$user = Profile::whereUsername($username)->firstOrFail();
|
||||
$timeline = $user->statuses()->orderBy('id','desc')->paginate(10);
|
||||
return view('profile.show', compact('user', 'timeline'));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue