Answers for "how cast array in date for laravel"

PHP
1

date casting from datetime to d-m-Y laravel using cast

/**
* The attributes that should be cast.
*
* @var array
*/
protected $casts = [
   'created_at' => 'datetime:Y-m-d',
   'updated_at' => 'datetime:Y-m-d',
   'deleted_at' => 'datetime:Y-m-d h:i:s'
];
Posted by: Guest on August-29-2021
0

laravel array cast

use Illuminate\Database\Eloquent\Casts\AsCollection;

/**
 * The attributes that should be cast.
 *
 * @var array
 */
protected $casts = [
    'options' => AsCollection::class,
];
Posted by: Guest on December-31-2021

Browse Popular Code Answers by Language