Skip to content
/ support Public

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

License

Notifications You must be signed in to change notification settings

attla/support

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages