Closed Biostate closed 1 year ago
Hi, I have parent theme and i created a new child theme named parent-wearing. I am using parent-wearing theme but when i run view('contact.blade.php') it returns parent/resource/views/contact.blade.php file. Why?
parent
parent-wearing
view('contact.blade.php')
parent/resource/views/contact.blade.php
My structer is like this:
This is my parent composer.json:
{ ... "authors": [ { "name": "Özgür Özarpacı", "email": "###" } ], "extra": { "theme": { "parent": "", "active": true } } }
This is my parent-wearing composer.json:
{ ... "authors": [ { "name": "Özgür Özarpacı", "email": "###" } ], "extra": { "theme": { "parent": "default/parent", "active": true } } }
Hi @Biostate ,
is default your vendor name in which your parent's theme is declared ? Just to be sure the extra.theme.parent value is right.
default
extra.theme.parent
Hi, I have
parent
theme and i created a new child theme namedparent-wearing
. I am usingparent-wearing
theme but when i runview('contact.blade.php')
it returnsparent/resource/views/contact.blade.php
file. Why?My structer is like this:
This is my parent composer.json:
This is my parent-wearing composer.json: