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