Answers for "laravel custom property"

PHP
8

laravel custom attributes

<?php
...

class Movie extends Model
{

    protected $appends = ['cover'];

    //define accessor
    public function getCoverAttribute()
    {
        return json_decode($this->InJson)->cover;
    }
}
Posted by: Guest on August-26-2021
0

laravel add attribute to model

$user = User::find(1);

// add occupation to user instance
$user->setAttribute('occupation', 'Web Developer');
Posted by: Guest on January-22-2021

Browse Popular Code Answers by Language