I am trying to include files in my homepage using blade syntax :-
@foreach($data as $articles) @include(app_path().$articles->path) <br /> @endforeach This is not working.
The error says :-
View [/var/www/blogproject/project/app/pages/articles/first-post.php] not found I even tried including just the first page :-
@include(app_path().'/pages/articles/first-post.php') But the normal php include is working fine :-
<?php include(app_path().'/pages/articles/first-post.php'); ?> Please help