What is Closure in Laravel? Technology Community › Category: Laravel › What is Closure in Laravel? 0 Vote Up Vote Down VietMX Staff asked 4 years ago A Closure is an anonymous function. Closures are often used as callback methods and can be used as a parameter in a function. function handle(Closure $closure) { $closure('Hello World!'); } handle(function($value){ echo $value; });