Support the ongoing development of Laravel.io →
Security Database Eloquent
Last updated 1 year ago.
0

Use Laravels Crypt::encrypt/decrypt with Eloquents setColAttribute/getColAttribute? :)

Last updated 1 year ago.
0

The above code works successfully, but it's a pain to implement. That was going to be my next question - what's the best way to transparently use MySQL encryption with Eloquent? Can't find any documentation on those 2 methods?

Last updated 1 year ago.
0

I'm looking for this as well.

0

Using Acessors and Mutators don't help you? I found it as the easy way to handle data modification when saving and reading from DB.

0

Its 2017 !

Is there any better way to do this yet ??

I'm in real need of this.

0

I just used an accessor:

# Controller
$model->fill([ 'password' => '12345' ]);

# Model
public function setPasswordAttribute($value)
{
    $this->attributes['password'] = DB::raw("AES_ENCRYPT('$value', 'some-key')");
}
Last updated 6 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

azcoppen azcoppen Joined 15 Mar 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.