Laravel AT Protocol Client (alpha & unstable)
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Simplify PostRecordClient get() to use fromArrayRaw

+1 -4
+1 -4
src/Client/Records/PostRecordClient.php
··· 136 136 cid: $cid 137 137 ); 138 138 139 - return Record::fromArray( 140 - data: $response->toArray(), 141 - transformer: fn($value) => PostView::fromArray($response->value) 142 - ); 139 + return Record::fromArrayRaw($response->toArray()); 143 140 } 144 141 145 142 }