1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| if (! function_exists('dd')) {
function dd(...$args) { header('Access-Control-Allow-Origin: *'); header('Access-Control-Allow-Methods: *'); header('Access-Control-Allow-Headers: *'); http_response_code(500); foreach ($args as $x) { (new Illuminate\Support\Debug\Dumper)->dump($x); } die(1); } }
|