For anyone else who finds this rolling back the version will work. But if you want to take advantage of the new functionality of the laravel-localization package you can change 2 files and add 1 file as outlined here.
Demaestro
@Demaestro
Posts made by Demaestro
-
RE: AdminLTE won't load
-
RE: Symfony\Component\HttpKernel\Exception\HttpException
@kenmonster you can edit the admin-bar partial template in the theme to give it more logic.
-
RE: Page Module - Custom Fields, Not working
bump
How can you extend the form views in Page and User modules now that they are all ajaxy with Vue
-
RE: Dynamic Relations
When using built in relationships you don't need the get() or first() methods.
Also you can see $self is being passed in. $this is out of context you want to use $self.
return $self->belongsTo(\Modules\Brokerquotes\Entities\Insurer::class, 'user_id', 'id');
-
RE: how admin page module index view working ?
@chiragpipariya It is using Vue.js to load the data.
-
RE: Icons showing as squre
This is almost for sure git changing your line endings in the font files (.woff and so on) and will likely break again when you do another push/pull in git. Your browser will keep good ones cached so you may not see broken ones if you have pushed, but new users will likely see the broken icons.
Because these are binary files, when git changes the line endings it breaks the fonts.
You will have to get a good copy of the fonts again then add this to your .gitattributes file
*.otf binary
*.eot binary
*.svg binary
*.ttf binary
*.woff binary
*.woff2 binaryThis tells git that the files are binary and it won't try to change the line endings anymore.
-
RE: Can't access to backend after migrate
The only way that could happen is if you changed the secrect_key in the .env file. if the secret key changes it can't decode the password.
-
RE: Passwordless Authenthication/ login/ Registration
@kenmonster It can support it if you want to mess with the Authentication module. Maybe look at JWT.