14 comments found.
Hello, 12 days have passed and I have not received a response. It is assumed that there is a response within 2 business days. I want my money back!
Hi, The project does not have the file .env for the database configuration. Thanks
Hello. The project does not have the file composer.json. The vendor.sh file is failing. “Please make sure you have the correct access rights and the repository exists.”
./vendor.sh
I apologize for the inconvenience, it seems the “LARAVEL” folder from the archive was not complete. Please re-download now and follow the README again. Please let me know if you need further assistance!
Thank you
Adrian
Thank you!
Hi. I also can’t install FlowDash with the instructions provided which are clearly incomplete:
“Unpack the main .zip file, THEN change directory to the project” (emphaisis is mine). Where should the main .zip file be unpacked? Anywhere?!?
I decided to try to unpack the main .zip file in the main project directory.
The next instruction is: run “composer install” which results ina few messages of which the most significant seems to be “Nothing to install, update or remove”.
Obviously the next steps also don’t work.
Are there working instructions for the install of FlowDash in a Laravel 8 project?
To be clearer: Are there working instructions for the install of FlowDash in an pre-existing Laravel 8 project?
You have run composer install from the folder which contains composer.json, which is the folder you’ll get by unpacking the archive you downloaded
Thanks
The file I downloaded is called “themeforest-l25ObhbB-flowdash-laravel-8-html-saas-template.zip”
When I unzip it I get a directory called “FlowDash – Laravel 8 + HTML SAAS Template” which has inside 2 subdirectories: “HTML” and “LARAVEL”.
Inside the “LARAVEL” directory I only have 2 versions of the same README file with the incomplete install instructions and a FlowDash.zip file.
Even after unzipping the “FlowDash.zip” file I still don’t have a composer.json file as hugonery mentioned in the comment below.
To be sure, I even looked inside the “HTML” subdirectory but it hasn’t any “composer.json” file inside either.
How can I install FlowDash in a existing Laravel project?
I apologize for the inconvenience, it seems the “LARAVEL” folder from the archive was not complete. Please re-download now and follow the README again. The contents of the “LARAVEL” folder IS the main project. By following the README, you can see exactly what is installed and where and then you can easily upgrade an existing project. Please let me know if you need further assistance on that!
Thank you,
Adrian
Thanks for the new file. Now the “composer install” step seemed to work.
Isn’t there a way to install FlowDash in an existing Laravel project? To use FlowDash I must start from scratch from the project downloaded from you?
Glad it’s working now! Like I said above, by following the README, you can see exactly what is installed and where in the laravel project and then you can easily upgrade an existing project.
For example, you can see there’s a package in app/FlowDash. Then, there’s a custom app/helpers.php file and it’s loaded from composer.json. Then you can see the contents of package.json, scripts and depencencies, etc.
You can follow the README in an existing project, you just have to update some files in your project to match the ones we provide.
Let me know if you have more specific questions or issues!
Thanks, Adrian
Hi, it’s impossible to install with your doc. After “composer install”, impossible to run “php artisan serv”. I’m on Mac V11.0.
Thanks for your help.
Eric STORK
Hi Eric,
Are you installing on a Laravel 8 project?
Send me your Github email to contact@frontted.com (will give you access to a full Laravel 8 project with FlowDash installed)
Thanks
Please re-download the package again and follow the README.
Thanks
Hi there,
I love this dashboard and am excited to start working with it. My question is what is the difference between this listing and
https://themeforest.net/item/flowdash-saas-admin-dashboard-template/25586651Is this the same but on sale, or am I missing something? I am hoping to purchase, but don’t want to buy the $18 version if this is the same. Thank you in advance for your advice!
All the best, -David.
This item is on Sale and has both HTML + Laravel 8 version.
Thanks Adrian
Hello, Much interested in your UI/UX Dashboard and would like to know if you are available for a custom job. There is a Laravel based SAAS and we would like to change its UI & give it a full make over with this template. Let me know if you are available to pick up this offer.
Thank you.
Hi DennisHooper,
Unfortunately at this moment we are not able to take custom jobs … if you want to start this from mid JAN onwards feel free to send us an email describing your SAAS App and requirements to contact@frontted.com
Thanks, Adrian
The design is great, but I’m having some major problems integrating this (possibly due to my own ignorance).
All the test pages are setting up and working but I find that: If I change content in the blade files inside /FlowDash folder in views I do not see my changes reflected.
So my question is partially workflow. Should I build my application view files inside the /app/FlowDash folder, or can I create views in my typical Laravel views folder?
I cannot seem to get either of them to work as expected.
Hi nectyr,
Views from app/FlowDash get published to resources/views/vendor so any changes to the views will have to be applied in resources/views/vendor
Aha. I see that changing those files does work. Thanks for that.
However would you please answer my workflow question? If I am to create new pages based on these templated samples. Where should they be put?
Can I create new pages under my typical resources->views folder? Or do I need to keep them inside this vendor folder to work properly? I had tried and found some issues (such as the $layout variable not being set when I tried that).
I highly appreciate your help and feedback. I love the product… just struggling to “get it”
I apologize for the delay! The missing layout variable is because for the package views we are setting a global $layout variable, you can see in app/FlowDash/FlowDashServiceProvider.php on line 133. You could set the layout variable directly from the controller returning the view or from the route returning the view ..
Example:return view(‘custom-view’, [‘layout’ => ‘default’, ‘containerClass’ => ‘container-fluid page__container’]);
or you could set a global View composer in App/Providers/ViewServiceProvider.php in the boot method
Example
View::composer('*', function ($view) {
$layout = 'default';
$containerClass = 'container-fluid page__container';
$view->with(compact('layout', 'containerClass'));
});
