Code

Discussion on SmartEnd CMS - Laravel Admin Dashboard with Frontend and Restful API

Discussion on SmartEnd CMS - Laravel Admin Dashboard with Frontend and Restful API

Cart 1,528 sales
Recently Updated

smart4ds supports this item

Supported

This author's response time can be up to 1 business day.

1175 comments found.

Hi Can i install it in main licensed domain and in subdomain simultaneously for testing?Thank you

You are welcome.
Yes, you can install and activate Smartend on the main and subdomains on the same time.

So u mean 1 license enough for Main domain and all Subdomain?Thank you

Yes exactly that’s what I mean.

I would like to clarify few things: 1- anyway to change the sides of menu on mobile? now English version is showing the menu n the right side. possible to change it to left? 2- anyway to change the height of footer? 3- Remove Top bar and add language button to menu container? 4-

Hello,
I’m not sure what you mean by “setting the menu to the left.” On mobile devices, the menu appears directly when the icon is clicked.
Anyway, all customizations need to be done manually based on your specific requirements.
You can edit the top bar, footer, and website menu from the following view files.
/core/resources/views/frontEnd/layouts/topbar.blade.php
/core/resources/views/frontEnd/layouts/menu.blade.php
/core/resources/views/frontEnd/layouts/footer.blade.php

Anyway to remove breadcrumps?

Yes, you can easily hide it by adding this custom CSS
.breadcrumbs{
display:none !important;
}

I want to use the public form module to get requests from public. And in the back end i want to check the status of the requests. like in progress, completed etc. I tried using custom fields, but could not achieve this. Anyway to do this?

I found a way to achieve that. Thanks

No problem, you are welcome.

thanks for responding me about my first issue. Now i have a fonctinality to ask you to tell me how can i apply it! in th homepage, there is organised by 7 row, each display one type content with unique design. My question is how to display a block of posts in gril display to load one blog category. And, in the blog page, can we display articles (posts) by blog category. like some Wordpress. Have you any options like that on SmartEnd CMS, or should i integrate a third party plugin, and wich one should be compatible with you? Hope explained well my issue! Thanks.

You are welcome.
You can use the method that used on homepage rows you mentioned to view posts for specific category. You will need to add your new custom row manually to the home blade.
For clearification You can get posts of specific module by category like

$ModuleID = 123; 
$CategoryID= 123; 
$Limit = 12;
$Posts = Helper::Topics($ModuleID,$CategoryID, $Limit);
As you can see you can set the module ID you want and the category ID to get posts, Then you can print these posts on a grid or which theme you want. For Example:
<div class="row">
   @foreach($Posts as $Post)
       <div class="col-lg-4">
           @include("frontEnd.topic.card",["Topic"=>$Post])
       </div>
   @endforeach
</div>
Regards

Good alternative for wordpress. but still hasn’t some inmportante features like select images from library to place it into post in the editor. Can’t insert alt for images. However, it’s the best wordpress alternative i tested yet. Also, i think you should add instruction in Installation Guide for installing/updating composer via SSH because not all users of this script do knows Laravel, for the most of them used Wordpress.

Hello and welcome,
Regarding your inquiries:

1. By default, Smartend CMS uses the Summernote text editor, which is simple and clean. However, Smartend also includes a built-in file manager that can be used with the editor to insert images. To access more advanced features—such as adding alt text to images—you can switch to a more advanced editor like CKEditor or TinyMCE.
To do this, go to:
System Settings → Text Editor, then choose your preferred option.
You can also manage images and files directly through the File Manager.

2.You do not need to run Composer via SSH for installation or updates.
Smartend CMS includes a built-in installation wizard and comes with all the required vendor packages. This allows you to install and run it directly on shared hosting or any standard server.
Additionally, it features an internal update system that can automatically check for and apply new updates.
https://smartend.app/installation
https://smartend.app/update-guide
Best regards,

Hi. i have error this Call to undefined function Spatie\ImageOptimizer\Optimizers\escapeshellarg()

can you help me for fix that?

Hello, and welcome!
To assist you better, we need a bit more information:
- Is this a fresh installation?
- On which page are you encountering the issue?
Please contact us directly with your website details so we can investigate the problem.
You can reach us at support@smartend.app.
Or from here https://codecanyon.net/user/smart4ds#contact

Hi. Anyway to change the header color?

Hello,
You can change the color of any part on the website frontend using CSS.
To change the header background you can use custom css like
.header-bg, .services .icon-box:hover .icon, .staff {
    background: #0fbaa3;
}
.navbar a, .navbar a:focus,.navbar li:hover > a,.navbar a:hover,.header-bg a,.header-bg a:hover,#topbar .contact-info a:hover,#topbar .contact-info i,#topbar .btn{
    color: #ffffff;
}
#topbar .dropdown-item{
    color: #000;
}
This code example will change the header background to green and menu links to white.
You can add this custom CSS code from:
Dashboard => Website Settings => Custom code => Custom CSS


Regards

Thank you for the reply. Now the issue is, when scrolled down, it changes back to white.

Yes exactly, you need to complete the CSS to change that part.
You can use the next CSS code also
#header.header-scrolled {
    background: #0fbaa3;
}
.header-scrolled .header-dropdown .btn, .header-scrolled .navbar a, body {
    color: #fff;
}
wbarazi

wbarazi Purchased

Hi,

All the text editors are saving the images in base64 format. how to prevent that and save the image as it is with url. Thanks

Hello, You are welcome.
Which version you are using of Smartend CMS?
Because we have changed it on the latest versions on all available WYSIWYG Editors to normal upload or File manager.
I recommend to try to try CKEditor it will use the file manage on insert images or media.
You can change the text editor from Dashboard => System settings => Text Editor
https://prnt.sc/gG1BVcQ5KX-L
Regards

Hi, This is Abbas , I recently purchased Smartend CMS. now in the setting section nothing is visible to edit can you please advise.

Hello
I’ve received your email — I’ve responded and you’re welcome to follow up there if you have any further questions or need additional assistance.

Hey. i made a debug, but i cant login a gain. i get this message. The g-recaptcha-response field is required.

Hey. i made a debug, but i cant login a gain. i get this message. The grecaptcharesponse field is required.

Hello,
If reCAPTCHA is enabled with incorrect details or there is an authentication error related to your domain, you won’t be able to log in.

To disable it and regain access, please follow these steps:
1. Open the file at ”/core/.env” and set the value of NOCAPTCHA_STATUS to 0.
2. Delete the configuration cache by removing this file:
/core/bootstrap/cache/config.php
Don’t worry it will be created automatically again.
Then you should be able to login normally with your email and password.
Let me know if you need any help with this.

i added 1 custom row in home sucessfully but when i try to add 1 more it wont wprks guide me

Hello, You are welcome.
Did you included your new rows on the home.blade.php file?
Please contact support directly via support@smartend.app Or from here https://codecanyon.net/user/smart4ds#contact With your website details or your custom code to be able to help you.
Regards

wbarazi

wbarazi Purchased

Hi,

There is also malware in the keditor folder:

SUC|spam_seo_hidden_content_142_2|XXXX|25/02/24 /assets/keditor/plugins/js-beautify-1.7.5/python/jsbeautifier/unpackers/tests/test-packer-62-input.js

Thank you for reporting, You might be fine, but this is a known issue with JS-Beautify. Some of its files have been reported to have security vulnerabilities, as mentioned here:
https://www.isgroup.it/node.security/audit-js-beautify.html

If you will not use the “keditor” you can remove this directory from your website
/assets/keditor/
Regards

Hello, You are welcome.
If you duplicated the “row2” and included it on the home page. You will need to change the connected Module ID and change the slider class to “owl-slider2” https://prnt.sc/_FE11k8e000s
You can know the Module ID from dashboard => System Modules
Then it should works correctly.
If you have any issues or need more clarification , please contact support directly via support@smartend.app
Or from here https://codecanyon.net/user/smart4ds#contact
Regards

Can I customize how page to add more homepage rows and pull content from its module default those shows 7 rows iwant to add 3&more and etc if yes tell me the way

Hello, you are welcome,
There is no option to add more rows to the homepage from the dashboard. To do so, you will need to update the homepage source code manually.
You can find the homepage view file at:

/core/resources/views/frontEnd/home.blade.php
All connected rows are located in:
/core/resources/views/frontEnd/homepage/row...
You can duplicate any row, modify the source code as needed, and include the new row in the `home.blade.php` file like the existing ones.
Hope this helps!
wbarazi

wbarazi Purchased

Hi,

Is it possible to provide us with the next update date?

I have a new project, and I want to know if I’m going to buy and use the next version for it.

This script is now almost 8 months without update.

Thanks

Sorry, you are right—we are behind schedule on the next update. However, it is not ready yet, and there is no fixed release date.

We are currently updating the project to the latest Laravel version 12, along with invoicing and payment features. You can continue using the current version and upgrade to the new one once it becomes available. Regards.

SSHEVA

SSHEVA Purchased

Good afternoon, can you tell me if this system is sold with open source code? Can I write my own functionality to this CMS? Or is it forbidden to change the code?

Hello, you are welcome.Yes exactly it fully open source. You can work on it as your own Laravel project.

Hello 1- how can i renaame Ar folder fo Fa to using Persian Language? 2- how can I submit website on google webmaster also google analyzing to support more than 1 language same Ar or Persian language? Does it need to use /Ar or …

Hello, You are welcome.
1. You doesn’t need to rename the language, You can add a new language with the code “fa” then update the translation to the desired language.
To Add a new language navigate to Dashboard => System Settings => Local Settings. Then click add a new language button.
You can add multiple languages as you want by the same way.

2. You can add your website to google from https://search.google.com/ then you will need to add the DNS zone from your hosting Cpanel. This doesn’t require any change on the website script.
If you want to integrate Google analytics, You can add the connection code from: Website Settings => Custom Code.

You can add any custom code you want from the same place.

Hope this helps. Regards

I’m having hacking files like ws.php in upload->media folder and in upload->inbox folder, and they are also able to add script to index.php at the top. I removed the files, but I think there is a security breach in Files Manager or something else.

Please check

Hello, Sorry to hear that your website has been hacked.Please follow these steps to secure your website
1. Ensure you are using the latest version of Smartend 10.0.4.
2. Replace the following controller file due to a security issue we identified:
http://smartend.app/updates/10.0.4/RegisterController.php.zip
Extract and replace it at this path:

core/app/Http/Controllers/Auth/RegisterController.php

3. Review the Users list in the website dashboard and remove any unauthorized users immediately.
4. Use a strong password for your admin account.
5. Double-check your files to ensure no injected or malicious files have been uploaded previously.
Additionally, we are working on a new release, which will include security enhancements across all project layers, including the upload system.
If you need any assistance, please feel free to contact us directly at: support@smartend.app.
Best Regards

Hi, This is Basir Ahmad Ahmadi, I recently purchased Smartend CMS. now in the setting section nothing is visible to edit but the style page can you please check that out or guide me through. the domain is www.ANURDO.org

Hello,You are welcome.
Please contact support directly via:
support@smartend.app
with your website details and a clear explanation of the issue.
by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey