/**
 * Determining If A View Exists
 *
 * @param string $view View name.
 * 
 * @return bool Returns true or false view doesnt exists.
 */
public static function exists(string $view): bool

Examples

if (View::exists('welcome')) {
    // do something...
}