status != null) { return ProfileController::accountCheck($profile); } if ($profile->is_private) { return ['error' => '403', 'msg' => 'private profile']; } $timeline = $profile ->statuses() ->whereScope('public') ->orderBy('created_at', 'desc') ->take(10) ->get(); $count = Status::whereProfileId($profile->id)->count(); $fractal = new Fractal\Manager(); $resource = new Fractal\Resource\Collection($timeline, new CreateNote()); $res = $fractal->createData($resource)->toArray(); $outbox = [ '@context' => 'https://www.w3.org/ns/activitystreams', '_debug' => 'Outbox only supports latest 10 objects, pagination is not supported', 'id' => $profile->permalink('/outbox'), 'type' => 'OrderedCollection', 'totalItems' => $count, 'orderedItems' => $res['data'], ]; return $outbox; } }