|
@@ -0,0 +1,23 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace App\Tools;
|
|
|
+
|
|
|
+use Illuminate\Http\Resources\Json\AnonymousResourceCollection;
|
|
|
+
|
|
|
+class ApiAnonymousResourceCollection extends AnonymousResourceCollection
|
|
|
+{
|
|
|
+ public function paginationInformation($request, $paginated, $default): array
|
|
|
+ {
|
|
|
+ return [
|
|
|
+ 'meta' => [
|
|
|
+ 'current_page' => $paginated['current_page'],
|
|
|
+ 'from' => $paginated['from'],
|
|
|
+ 'last_page' => $paginated['last_page'],
|
|
|
+ 'path' => $paginated['path'],
|
|
|
+ 'per_page' => $paginated['per_page'],
|
|
|
+ 'to' => $paginated['to'],
|
|
|
+ 'total' => $paginated['total'],
|
|
|
+ ]
|
|
|
+ ];
|
|
|
+ }
|
|
|
+}
|