attla/support

Collection of resources to improve and extend ways to use laravel.

Maintainers

Details

github.com/attla/support

Source

Issues

Installs: 65

Dependents: 8

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/attla/support

dev-main 2025-02-18 22:15 UTC

This package is auto-updated.

Last update: 2025-09-18 23:32:50 UTC


README

License Latest Stable Version Total Downloads

🛠️ Collection of resources to improve and extend ways to use laravel.

Installation

composer require attla/support

Usage

Arr examples:

use Attla\Support\Arr as AttlaArr;
use Illuminate\Support\Arr;

// Convert a value to array
AttlaArr::toArray($value); // array
Arr::toArray($value); // array

// Randomize positions of an array
AttlaArr::randomized($value); // array
Arr::randomized($value); // array

Str examples:

use Attla\Support\Str as AttlaStr;
use Illuminate\Support\Str;
use Illuminate\Support\Stringable;

AttlaStr::isBase64($value); // bool
Str::isBase64($value); // bool
(new Stringable($value))->isBase64(); // bool

AttlaStr::isHttpQuery($value); // bool
Str::isHttpQuery($value); // bool
(new Stringable($value))->isHttpQuery(); // bool

AttlaStr::isSerialized($value); // bool
Str::isSerialized($value); // bool
(new Stringable($value))->isSerialized(); // bool

License

This package is licensed under the MIT license © Octha.