view($view); } /** * @param view-string $view */ public static function make(string $view): static { $static = app(static::class, ['view' => $view]); $static->configure(); return $static; } }