mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-23 19:50:40 -05:00
update: UNIT3D linting
- github action updated with new ruleset in pint.json - codebase linted with new ruleset - contributors can now run `./vendor/bin/pint` - action workflow will auto correct any lint issues upon commit/opened pull request
This commit is contained in:
@@ -25,7 +25,7 @@ class PostController extends Controller
|
||||
{
|
||||
$posts = $user->posts()->with(['topic', 'user'])->latest()->paginate(25);
|
||||
|
||||
return \view('user.post.index', [
|
||||
return view('user.post.index', [
|
||||
'posts' => $posts,
|
||||
'user' => $user,
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user