Blade did not provided a way to define variables.But you can extend blade by using extend method as shown below
Blade::extend(function($value) { return preg_replace('/\@var(.+)/', '', $value); });
How to use
@var $variableName = "variableValue"
That’s it.