fresh() public method

Reload a fresh model instance from the database.
public fresh ( array | string $with = [] ) : static | null
$with array | string
return static | null
 /**
  * If object was saved
  *
  * @param  string $message
  */
 public function updated($message)
 {
     $model = $this->model->fresh();
     if ($model->updated_at->diffInSeconds() < 5) {
         return $this->flash->success($message);
     }
     $this->error(trans('alert::errors.updating'));
 }