ISSUE
v3.1.0
2024-10-1
Comments don’t work.
The warning message "An unexpected error occurred" appears when submitting the comment form. This error occurs because there are permissions.
How to solve it:
Open the app/Http/Controllers/CommentController.php
file, delete the following line in the __construct
method:
$this->middleware('permission:read-comments', ['only' => ['index']]); $this->middleware('permission:add-comments', ['only' => ['store']]); $this->middleware('permission:update-comments', ['only' => ['update']]); $this->middleware('permission:reply-comments', ['only' => ['store']]);
v2.3.1
2024-03-25
2. The image display is broken when editing a translation category where the main category image is deleted
Download TermTrait.zip. Put the downloaded file in the directory as follows to replace the old TermTrait.php
file.
📒 your_folder_website 📂 app 📂 Traits 📄 TermTrait.php
v2.0.1
2023-09-18
2. The Google Analytics Global site tag script does not appear
<!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=xxx-xxx"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'xxx-xxx'); </script>
2023-08-30
The language item caanot be activated/deactivated
Download LanguageController.zip. Put the downloaded file in the directory as follows:
📒 laramagz 📂 app 📂 Http 📂 Controllers 📂 Admin 📄 LanguageController.php
v2.0.0
2023-08-25
Cannot change Display language options
Download route-admin.zip. Put the downloaded file in the directory as follows:
📒 laramagz 📂 routes 📄 admin.php
2023-08-24
The DataTables 'Attempt to read property "name" on null' error appears after deleting the parent category
Download app.zip. Put the downloaded file in the directory as follows:
📒 laramagz 📂 app 📂 Models 📄 Term.php 📂 Services 📄 TermService.php
2023-08-21
Problem with Logo header on mobile view
Download style.zip. Put the downloaded file in the directory as follows:
📒 laramagz 📂 public 📂 themes 📂 magz 📂 css 📄 style.css 📄 style.css.map
Disqus missing in Laramagz v2.0.0
If you download the application but don’t find disqus in settings.
Please download the following file patch-disqus. Put the downloaded file in the directory as follows:
📒 laramagz 📂 app 📂 Http 📂 Controllers 📂 Admin 📄 SettingController.php 📂 database 📂 seeders 📄 SettingSeeder.php 📂 resources 📂 views 📂 admin 📂 settings 📄 _web-config.blade.php 📂 routes 📄 admin.php
v1.3.2-3
The post image in the post details does not appear
Please download the following file single.blade.php. Put the downloaded file in the directory as follows:
📒 resources 📂 views 📂 frontend 📂 magz 📂 page 📄 single.blade.php