<?php
Laravel allow all fillable
protected $hidden = ['updated_at'];
protected $guarded = ['updated_at'];
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Audio extends Model
{
use HasFactory;
//Add this below
protected $hidden = ['updated_at'];
protected $guarded = ['updated_at'];
}
0 comments:
Post a Comment
Thanks