Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

dev.khosromanesh's avatar

how edit pages generated by laravel

i was confused how edit pages generated by laravel for example in themes folder we have below sturcture themes/DefaultTheme/src/resources/views/partials/checkout-sidebar.blade.php the generated page is located on : E:\projects\goharkharid\website\storage\framework\views\0c82e7c11c5e3de92a92deb2dbce4ca8f4d0737c.php

if i edit something on second file the out put will observable but in first it could not please someone explain about it

0 likes
3 replies
Amaury's avatar
Amaury
Best Answer
Level 43

@dev.khosromanesh I am not sure to really understand what is your question and your problem, but when it comes with files within the storage/framework/views directory, it is cached by Laravel version of views. Maybe you should try to clear the cache of the views?

php artisan view:clear
1 like
Ben Taylor's avatar

You edit the first one you listed

themes/DefaultTheme/src/resources/views/partials/checkout-sidebar.blade.php

The other one is the cached version as @amaury said.

1 like
Snapey's avatar

to make sure you understand, Laravel does not come with any theme. This is from some third party package which you need to identify so that you can check out their docs and the best way to customise

1 like

Please or to participate in this conversation.