laravel-casters

A collection of custom casts for Laravel

User.php
composer.json

Introduction

Introduction

{note} You're browsing the documentation for an old version of laravel-casters. Consider upgrading your project to v3. Check your version with the following command:

composer show rawilk/laravel-casters

Casts for Laravel is a collection of custom class casts for Laravel Eloquent Models. This package allows you to quickly and easily add casts for encrypting attributes and hashing passwords on your user models.

protected $casts = [
    // Hashes the value when assigning to `$model->password`.
    'password' => Password::class,

    // Encrypts on write, decrypts on read.
    'classified' => Encrypted::class,

    // Encrypts on write, decrypts and typecasts to integer on read.
    'secret_number' => Encrypted::class . ':integer',
];

Some alternatives to this package include:

This package is not affiliated with, maintained, authorized, endorsed or sponsored by Laravel or any of its affiliates.

Caught a mistake? Suggest an edit on GitHub