Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1.45 KB

README.md

File metadata and controls

60 lines (40 loc) · 1.45 KB

Laravel support resources

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.