Como pode obter atributo sem getter em Laravel

-> since Laravel 7.x and 8.x there is a new approach to access intact attribute:
// that skips accessors
$model->getRawOriginal('name');
Mohamad