Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Defines a named constant
<?php define(string $constant_name, mixed $value, bool $case_insensitive = false): bool
<?php     public function boot()

    {

        if (!defined('STUBS_PATH')) {

            define('STUBS_PATH', dirname(__DIR__) . '/stubs');

        }



        if (!defined('CUSTOM_STUBS_PATH')) {
<?php         }



        if (!defined('CUSTOM_STUBS_PATH')) {

            define('CUSTOM_STUBS_PATH', base_path('stubs/blueprint'));

        }



        $this->publishes([