Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I am wondering that laravel is best for query builder for MySQL and various field in web development. It is managed by controller which has a effective control for backend logic. But Wordpress is best for fronted and blog (Custom functionality is possible but not as laravel). It has many drag and drop tools to build frontend design. Can I use laravel api as WordPress backend?
Laravel and WordPress really have pretty different opinions about database structure and interface. What you might consider is building an API in Laravel and accessing it via a plugin in WordPress. You'd have two independent websites but they could work together.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I'm using php and Laravel.
Is is good to build my courier?
I know this is ridiculous but i wonder.
modern php is much better than before.
but i'm still wonder using php.
Yeah it is still good using php especially laravel.
First, php framework (laravel) using MVC Architecture that easy to use, and many tutorials there.
And then, laravel have a feature called Eloquent ORM for easy interaction with your app database
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I was tasked to create a file upload workflow that integrates with Wordpress.
I created a backend that is called via REST that does a lot of custom workflows. Thus, I cannot use the current plugins.
It is a single page application that accepts a file as well as some metadata.
My current dilemma: I need to integrate this web application within Wordpress and have no clue where to start.
After consulting with someone who's developed with Wordpress before, he recommended to build a plugin. And since I have no experience with Wordpress, he helped me build it. It was literally 3 lines of PHP.
Thank you all.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
There are two main features that I love in Django:
a) It creates the SQL table automatically from the Model
b) It auto generates a powerful admin from the Model
Is there a PHP framework with these two features? I've looked at Symfony and cakePHP, but I couldn't find any info about a)
Thanks!
I heard good things about Laravel, but in principle:
It works in reverse to Django, where its ORM dynamically match your Model's member variables to database tables.
It also has several scaffolding library (example) to generate simple CRUD admin page.
Symfony uses ORM Doctrine that generates database tables based on entity mapping
There is no auto-generated admin dashboard in Symfony2, but there are bundles for that (e.g. SonataAdminBundle)
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
i am creating a php website as a service. My customers pay me annual fee and they will use this service during this time.
My question: I want to provide several features. And some customers needs only certain features. Some needs custom made features. So how to separate it as modules or addins when coding, keeping it simple for integration to the site.
Please guide me.
Example site: Shiftcode.com
Check their gpt sites admin panel.
thanku
You can have a look at http://www.symfony-project.org/, a very good framework for PHP development. It has a nice routing feature that can fit your needs. And you will gain unit test framework and a lot of other things.
before decide about developing such complex application, have a look at existing ones like WordPress Multisite/Network
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I'm planning to make me a new website. I have choosen Joomla as my CMS to go.
But before I start, I have 2 questions:
Is it possible (and easy) to change the Theme on the fly? So that a user can select an alternate theme?
What do u think about frameworks? Especially for Joomla. Should i use one? If yes, which one do you suggest? (a free one)
Yes it is possible for the user to switch the template on the fly. See this extension.
Joomla! has its own built in MVC framework which you'll see and use if you develop your own components. There is no need to use another framework within that.