There's a little bug with Laravel Blade when you extends the blade components in itself, It makes the computer freeze(In my case) and to back to normal needs to unplug from the energy source.
Please Be Careful this just froze my laptop(kinda old but it still works).
Route::get('/', function () {
/* This will render a file in:
* /foo/bar/laravel-project/resources/views/test.blade.php
*/
return response()->view('test');
});
test.blade.php file
@extends('test')
Because you are extending current blade component and occurs infinite loop.
This is not bug, this is a your unreasonable coding.
Don't make infinite loop, this is your coding mistake.
Do you _not_ have a memory limit?
Most helpful comment
Because you are extending current blade component and occurs infinite loop.
This is not bug, this is a your unreasonable coding.
Don't make infinite loop, this is your coding mistake.