jbernavaprah/eloquent-binary-cast

Cast correctly binary data (mainly for PostgreSQL)

dev-master 2021-05-22 13:56 UTC

This package is auto-updated.

Last update: 2024-04-22 20:34:38 UTC


README

The Eloquent Binary Cast.

When using the PostgreSQL dialectic, Eloquent treat the "bytea" column in the same manner as blob/text column. But this is incorrect on PostgreSQL. The value needs to be cast before pushed to the database.

If you are not using Postgresql, you don't need this cast class.

See those issues:

Prerequisites:

  • PostgreSQL 9.0 or later.
  • Eloquent 8 or later.

Install:

composer require jbernavaprah/eloquent-binary-cast

Use:

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use JBernavaPrah\EloquentBinaryCast\BinaryCast;

class User extends Model
{
    /**
     * The attributes that should be cast.
     *
     * @var array
     */
    protected $casts = [
        'binary_data' => BinaryCast::class,
    ];
}

See https://laravel.com/docs/8.x/eloquent-mutators#custom-casts for more details.

Tests:

composer test

Authors