Setting a version number
Optionally, you can configure Flare to add a version number to all sent exceptions. Typically, this is done in a service provider.
use Spatie\LaravelFlare\Facades\Flare; // Replace by Spatie\LaravelIgnition\Facades\Flare when using the `spatie/laravel-ignition` package
Flare::determineVersionUsing(function() {
return '1.0' ; // return your version number
});
When you're looking at an error in Flare, we'll display the version number across our UI.