renoki-co/laravel-useful-casts

Laravel Useful Casts is a simple package for Laravel 7.0+ that comes with already-tested and already-written, useful casts for Eloquent models.
3,584 11
Install
composer require renoki-co/laravel-useful-casts
Latest Version:2.2.0
License:Apache-2.0
Last Updated:Jun 29, 2026
Links: GitHub  ·  Packagist
Maintainer: rennokki

Laravel Useful Casts

CI codecov StyleCI Latest Stable Version Total Downloads Monthly Downloads License

Laravel Useful Casts is a simple package for Laravel 7.0+ that comes with already-tested and already-written, useful casts for Eloquent models.

🤝 Supporting

If you are using one or more Renoki Co. open-source packages in your production apps, in presentation demos, hobby projects, school projects or so, sponsor our work with Github Sponsors. 📦

🚀 Installation

You can install the package via composer:

composer require renoki-co/laravel-useful-casts

🙌 Usage

use RenokiCo\UsefulCasts\Casts\Encrypted;

class User extends Model
{
    protected $casts = [
        'ssn' => Encrypted::class,
    ];
}

// 'ssn' value gets encrypted in the database.
$user->update(['ssn' => '12345678']);

Available Casts

Cast class Purpose
RenokiCo\UsefulCasts\Casts\Encrypted::class Encrypts and decrypts a value from the database
RenokiCo\UsefulCasts\Casts\Arrayed::class Serializes and unserialies an array. If the value is null, returns an empty array.
RenokiCo\UsefulCasts\Casts\EncryptedArray::class Encrypts and decrypts a value from the database, making sure it's always an array, even if the value is set or get as null

🐛 Testing

vendor/bin/phpunit

🤝 Contributing

Please see CONTRIBUTING for details.

🔒 Security

If you discover any security related issues, please email alex@renoki.org instead of using the issue tracker.

🎉 Credits

Related Packages

arthurydalgo/laravel-iso-countries

Ready-to-use Laravel models and relations for country (ISO 3166), language (ISO...

31,262 0
neuecommerce/model-casts

Some handy Laravel Eloquent model casts.

18,186 0
vkovic/laravel-custom-casts

Make your own custom cast type for Laravel model attributes

378,574 217
io238/laravel-iso-countries

Ready-to-use Laravel models and relations for country (ISO 3166), language (ISO...

84,546 57
dennisvandalen/laravel-iso-countries

Ready-to-use Laravel models and relations for country (ISO 3166), language (ISO...

1,502 0