0
votes

The path to my partial view is:

my_bundle/views/partials/subfolder/view_name_nodots

I am trying to include it in a view, using:

@include('my_bundle::partials.subfolder.view_name_nodots')

But I get the error:

'my_bundle::partials.subfolder.view_name_nodots' does not exist.

If I rename the view to view_name_nodots.blade.php, the above @include works. But I don't want blade to be used in that partial file...

1

1 Answers

0
votes

Apparently, I am to use the file name view_name_nodots.php. The include works when I do that.