Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simple application built with laravel? [closed]

I am looking at getting into laravel, it looks like an awesome framework,but it seems to be missing one vital piece of it's documentation.. A "Getting started" tutorial.

A simple blog tutorial or similar or even an open source application built on laravel. Does anyone have links to some good tutorials or resources for laravel?

I have come across this nettuts tutorial, but it only skims over things very briefly. I was hoping there would be a tutorial that went more in depth.

There is of course the official documentation but that again is more an overview of what you can use, it doesn't really tell you how to use them.

like image 827
Hailwood Avatar asked Dec 18 '12 06:12

Hailwood


People also ask

Is Laravel still widely used?

According to a 2020 survey by JetBrains, 50% of PHP developers say they use Laravel regularly, compared to 25% for the next most commonly used framework, Symfony. Data from Google trends also show how Laravel has moved ahead of Symfony and other alternatives in searches.

Can Laravel make apps?

Laravel is preferred in creating mobile apps because it is able to use Symfony components. There are many libraries designed for Symfony PHP framework that Laravel can use. A majority of such libraries are already built and tested by users making it easier for you to use them.

Is Laravel used in big companies?

A few other big companies using Laravel includes 9GAG, Pfizer, TourRadar, and Crowdcube.


2 Answers

Try daylerees.com/codebright (As mentioned by @michel-sim)

It gives you a comprehensive tutorial from start to end and its well written

Also if you get stuck

The community is really helpful too. Check the Forums

UPDATE

Also I would recommend fallendown2005's laravel videos on YouTube. It really helps if you're a beginner

http://www.youtube.com/user/fallendown2005?feature=watch

like image 116
cjds Avatar answered Sep 30 '22 09:09

cjds


I'm Nikko Bautista, the author of the Nettuts+ tutorials. I actually halted the writing the series since I thought Laravel 4 was due soon. I learned that it will come out next year though, so I will actually finish the other parts of the series as well.

Anyway, if you're looking for an application that's built using Laravel, you can check out this open source application I built as part of a hackaton back in the Philippines. It's called "Bukas Palad" (which means "Open Palms" in Tagalog). It's a donation and resources management system designed to help donation and relief centers keep track of donations and resources (this hackaton occurred during in the wake of one of the big storms in the Philippines in 2012).

You can find the code here: http://webpilipinas.github.com/bukaspalad/

This actually makes use of a lot of Laravel components:

  • Migrations
  • Eloquent ORM
  • Fluent Query Builder
  • Events
  • Routing
  • View Composers
  • Asset Management
  • REST-based controllers
  • Sessions
  • Validation
  • Inputs

If you have any questions, feel free to create issues on the GitHub page or ask here :)

like image 22
Nikko Avatar answered Sep 30 '22 08:09

Nikko