Eric Fletcher
Eric Fletcher
Anything in your browser dev tools/console? I'd expect to see some kind of error related to the font files. The type of error shown will help identify cause. This does...
https://stackoverflow.com/questions/34288778/failed-to-decode-downloaded-font-ots-parsing-error-invalid-version-tag-rails Not exactly the same environment, but same error reported, which is that your browser can't parse the font files for some reason. Open up the network tab and find...
That's a JS file, so whitespace is fine. That's very much not the cause of your issue.
Yes, but the screenshot you provided was of a JS file
Yup, that would definitely do it. Glad you found it
You're correct, that error means your user does not have access to that page. However, you make a false assumption in your analysis. `artisan voyager:admin` will create an admin role...
@reigningreban, whatever is relevant. Likely ~100 lines, but we can't say for certain.
``` [2020-02-27 21:05:04] local.ERROR: Use of undefined constant url - assumed 'url' (this will throw an Error in a future version of PHP) (View: C:\wamp64\www\webdemy\resources\views\front\series\show.blade.php) {"exception":"[object] (Facade\\Ignition\\Exceptions\\ViewException(code: 0): Use of...
Okay, that's entirely likely given the 2/27 date. Just wanted to make sure.
@rramirez7878 is your model class named with a lowercase? That's counter to laravel and php standards. Classes should all be `TitleCase`, and model classes for Laravel should be singular (which...