This is base. blade. php head and I am in user. blade. php inherits base. blade. php {code ...} then visit localhow.user (this is a mobile page, I used m) And then I could not find it but access localhostm.
This is the head in base. blade. php.
Then I inherited base. blade. php from user. blade. php.
@extends('mobile.base')
Then visit http: // localhost/m/user (this is a mobile page, I used m)
Then no
However, you can find all accesses to http: // localhost/m.
Reply content:
This is the head in base. blade. php.
Then I inherited base. blade. php from user. blade. php.
@extends('mobile.base')
Then visit http: // localhost/m/user (this is a mobile page, I used m)
Then no
However, you can find all accesses to http: // localhost/m.
Simple Solution
A simple solution is to change to an absolute path.One more slash
Error cause
Because it is a relative path, the resource path is determined based on the current URL path. You can see that there is more in your resource directory./m/
Access, http: // localhost/m, path: http: // localhost/, file is m,
Access, http: // localhost/m/user, path: http: // localhost/m/, file is user