I have two project. There are frontend project (shop online) and backend project(crud to manage sales data etc of shop online). My project use laravel 5.3 and my database use mysql database. Both projects use the same database
I want to change my database. I want to use database sugercrm. https://www.sugarcrm.com/. And my backend project, I also want to change it using sugarcrm
So I want my database and my backend project using sugarcrm. For my frontend project keep using laravel 5.3
How do I implement it?
Whether it can be implemented?
Related
I have a ready database in MySQL, I want to have an admin panel using Laravel or PHP, is there any fast method to do it?
I know this could be done in Python and Django, I tried it but I have some limitation in my VPS, so I need to do it in Laravel.
if it could be done using Laravel, how much control do I have to customize this admin panel? like internationalization, or custom design?
any suggestion will be helpful thank you
Sorry, I haven't any code to show, I just need a recommendation.
I can offer the following tips.
take a look at laravel nova and/or laravel backpack
laravel can utilize multiple db connections
If it were me trying to get an admin panel up in a hurry, I'd use backpack and I'd setup the laravel basic user scaffolding in a separate db.
Follow this tutorial and u can make admin panel whit in laravel and and customize controller how you want them to handle your functions http://connorleech.info/blog/Build-a-quick-admin-panel-in-Laravel-5/ still works in 5.7
I am in the process of creating a booking portal for salons. My problem is that salon owner admin panel project is created in raw PHP, but salon directory website and customer dashboards are created in Codeigniter framework. Is it possible to merge these two projects together and use some tables from raw PHP project database in Codeigniter project. This is my first project and I'm confused. Any help or advice is appreciated.
Create a brand new application project in Codeigniter. As long as there is a database, you can create any application in multiple languages and frameworks. I would suggest having a look at Laravel as Codeigniter is quite dated and wouldn't allow you to scale easily as things grow complex.
I have been working with Yii for some years, since version 1. I think is an awesome framework.
Today I need to build a website using Yii which includes building an API, administrator and frontend site.
In the past when I have worked in other similar projects. I shared model between them, each side (api, frontend and administrator) have their own controllers.
With Yii I am trying to find a way to organize it to take advantage of the full power of yii.
I was planning to use API only for mobile apps not for web frontend to be able to use Yii validation rules, etc and speed up the project.
Project owner wants to build a frontend which reads data through API too, that will bring duplicated validation rules etc.
If I follow project owner requirement it will be like managing 3 projects
1. Api + Backend
2. Frontend
3. Mobile
If I follow the other option, it will be like managing 2 projects:
1. API + Frontend + Backend
2. Mobile
Any advice?
Use the advanced application template, make the common directory a git subtree. Then, you can use the subtree in any number of projects. There you are maintaining only one set of models for several applications. Works great for me.
My situation:
Using Laravel 5.1, I want to use it's built in ACL features.
Challenge:
My website has a Admin and a Client side to it. On top of that, the database structure for each is very different and the Control Panel for Admin and Client is very different.
How do I go about implementing ACL with this?
Note - I have subfolders for each part of the website (one folder for client side, one folder for admin, one folder for front-end pages).
Is this even possible to build using Laravel's built-in ACL system? or should I make my own in my situation? Thank you.
I am using Codeigniter to develop my application. I am using MySQL database and I need to integrate Cassandra db in my site. So i need to use both of them in my framework.
I get the code from the following link for using Codeigniter with Cassandra, but I need to use both cassandra and mysql. Is it possible to use both? Half of the project is completed i am using MySQL.
I only need to integrate Cassandra, but the files downloaded from github the code is intergrated with cassandra. I can't find the steps or separate plugin cassandra files to integrate with Codeignitor.
yes its possible. cassandraci is a library whose function you can access with
$this->db->query()->insert('key', array());
$r1 = $this->db->query()->get('key');
only if you autoload that db class. Read more