Mohan Kute
Mohan Kute

Reputation: 137

Difference between laravel 5 and codeigniter 3

This may silly question. But I am going to start new project. I am quite confused which framework is best out of Codegniter 3 and Laravel 5. What is the main difference between them.

Thanks in Advance

Upvotes: 1

Views: 5006

Answers (4)

umarbilal
umarbilal

Reputation: 318

I will recommend you to use Laravel beacuse of:

  • Built in authentication
  • Awesome migrations
  • Artisan commands to do anything in your project
  • Built in pagination (It's took long in Codeigniter)
  • Eloquent (Very easy way to interact with your database)
  • Relationships
  • Routes
  • Easy API building
  • Easy debugging
  • Huge number of packages and libraries etc.

Upvotes: 0

Denuka
Denuka

Reputation: 1242

Each framework have their own features and capabilities, used during the development of application. Laravel is one of the highly used, open-source modern web application framework that designs customized web applications quickly and easily.Laravel is used not only for big project but also best to use for small project. Best framework in 2018

If you want a framework with exceptional performance, with nearly no configuration, not using cmd and not interested with large scale libraries and also your project is in small scale it's better to use codeIgniter.

CodeIgniter3 vs Laravel5

Upvotes: 1

Sagar Shinde
Sagar Shinde

Reputation: 95

Both framework are good in there place. Laravel made from multiple open source project which make laravel more efficient , reliable and secure. Where, laravel used blade engine. It used composer for package manager. It provide unit testing. It provide more security. It provide beautiful redis queue front portal called laravel horizon. Disadvantage : laravel used predis which is slower, because it is written in php.where phpredis is more faster, but laravel 5.* Don't support it.

Upvotes: 0

Rav
Rav

Reputation: 1387

Right now, I personally prefer Laravel since it supports PHP7 unlike CodeIgniter (I still haven't read if CodeIgniter 3 supports PHP7). And based on personal experience, Laravel (through Eloquent) has "beautifully-written-codes".

Here are some references for you to check out: (I made sure to post both sides to not be bias)

https://www.codeclouds.com/blog/laravel-vs-codeigniter-a-difficult-choice/

https://www.clickittech.com/developer/laravel-vs-codeigniter-which-one-is-the-best-to-use

http://www.codeigniterhands.com/codeigniter-or-laravel

http://laravel.io/forum/07-08-2014-laravel-vs-codeigniter-a-difficult-choice

https://therightsw.com/codeigniter-vs-laravel-vs-yii-vs-cakephp/ (with grades for usability)

Upvotes: 5

Related Questions