This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Support\Filters; | |
| use Illuminate\Database\Eloquent\Builder; | |
| final class FilterBuilder | |
| { | |
| public function __construct(protected Builder $query, protected array $filters, protected string $namespace) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Traits\Http; | |
| use Error; | |
| use Exception; | |
| use Illuminate\Http\JsonResponse; | |
| use Illuminate\Http\Resources\Json\JsonResource; | |
| use Illuminate\Http\Resources\Json\ResourceCollection; | |
| use Illuminate\Validation\ValidationException; |
OlderNewer