comment peut obtenir l'attribut sans getter à Laravel

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