diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..496ee2c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store \ No newline at end of file diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..e47240e --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +laravelweekly.com \ No newline at end of file diff --git a/README.md b/README.md deleted file mode 100644 index 7f2f5a3..0000000 --- a/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# Laravel Weekly - -**Laravel Weekly is currently on hold. We'll be integratig the service into [Laravel.io](http://laravel.io) in the near future.** - -A weekly Laravel newsletter. [Click here](http://laravelweekly.com) to sign-up. - -This repository contains [the HTML template](newsletter.html) used in Mailchimp for creating the Laravel Weekly email campaigns. Feel free to contribute by sending in pull requests. - -The source code for the [laravelweekly.com](http://laravelweekly.com) website can be found on [the gh-pages branch](https://github.com/LaravelIO/LaravelWeekly/tree/gh-pages). - -Check out the list with past issues [here](http://laravelweekly.com/#past-issues). diff --git a/index.html b/index.html new file mode 100644 index 0000000..b5d39ec --- /dev/null +++ b/index.html @@ -0,0 +1,39 @@ + + + + + + + + + Laravel Weekly + + + + + + + + + + + + +
+ Laravel Weekly + +

Laravel Weekly is a newsletter that will provide you with the latest resources, news items, tips and tricks for the Laravel PHP framework.

+ +

Currently, Laravel Weekly is on hold because I took over the Laravel.io community portal. Laravel Weekly will be integrated into Laravel.io in the near future.

+ +

Thank you to everyone who has subscribed so far and continuous to support Laravel Weekly.

+ + +
+ + + diff --git a/issues/images/laracon-eu-announcement.jpg b/issues/images/laracon-eu-announcement.jpg deleted file mode 100644 index 1766f4f..0000000 Binary files a/issues/images/laracon-eu-announcement.jpg and /dev/null differ diff --git a/issues/laravel-4-learnings-week-5.md b/issues/laravel-4-learnings-week-5.md deleted file mode 100644 index 44e6399..0000000 --- a/issues/laravel-4-learnings-week-5.md +++ /dev/null @@ -1,73 +0,0 @@ -# Laravel 4 Learnings: Week 5 - -Wooha, has it already been 5 weeks since I started these blog posts? Time flies. I want to thank all of you for the wonderful responses I've been getting about these posts. Again, if you'd like to see your blog posts, packages or anything else for Laravel 4 in these posts, mail or mention me the links and I'll have them up next week! - -## New Laravel 4 Screencast - -In this [brand new L4 screencast](http://vimeo.com/63892510), Taylor talks about the newest additions to the framework. - -http://vimeo.com/63892510 - -## Laracon EU: A Call For Talk Proposals - -[Laracon EU is starting to take shape](http://laravel.io/topic/23/laracon-eu-a-call-for-talk-proposals). The recent survey by [Shawn McCool](https://twitter.com/ShawnMcCool) turned out to have a great response and he's confident that there will be enough attendees to have a decent conference, probably late Summer 2013. - -Before Laracon EU can happen, speakers will be needed for the conference. You can [submit a talk proposal here](https://heybigname.typeform.com/to/bY3H46) if you're interested at speaking at Laracon EU. - -## Laravel 4 Primer: JSON - -https://twitter.com/daylerees/status/323043035237740546 - -[Dayle Rees](https://twitter.com/daylerees) has teased a chapter from his upcoming book "Code Bright". [Go have a look](http://daylerees.com/laravel-four-primer-json)! - -## HTTP Basic Auth - -https://twitter.com/laravelphp/status/321290995155206145 - -Implementing HTTP basic authentication has never been easier now that it's baked into the core of Laravel 4. When you put the filter on a route, your browser will prompt you with a login screen. The user logs in and Laravel handles the authentication automatically. - -```php -Route::get('basicauth', array('before' => 'auth.basic', function() -{ - return 'Logged in!'; -})); -``` - -## Improved Error Display With The "Whoops" Library - -https://twitter.com/laravelphp/status/322416887680098304 - -Replacing the old Symfony error screens, the Whoops library provides a much improved error handling screen. - -## Support For Renaming Database Table Columns - -Support for renaming database table columns in L4 has been added. First parameter is the original column name and the second one is the new column name. - -```php -Schema::table('addresses', function($table) -{ - $table->renameColumn('location', 'city'); -}); -``` - -## Resources - -- [Blade Syntax Highlighter for Sublime Text](https://github.com/Medalink/laravel-blade) by [Eric Percifiel](https://twitter.com/medalink7) -- [How To Contribute To Laravel 4](http://driesvints.com/blog/how-to-contribute-to-laravel-4/) by myself -- [Using Dependency Injection and IoC in Laravel 4 controllers](http://www.nathandavison.com/posts/view/16/using-dependency-injection-and-ioc-in-laravel-4-controllers) by [Nathan Davison](http://www.nathandavison.com/) -- [A Bit Of Everything](http://niallobrien.me/2013/04/a-bit-of-everything/) by [Niall O'Brien](https://twitter.com/niall_obrien) -- [Quick tip on swapping Facades with Mocks when testing](https://gist.github.com/JeffreyWay/5348385) by [Jeffrey Way](https://twitter.com/jeffrey_way) - -## Screencasts - -- [Validation Services](https://tutsplus.com/lesson/validation-services/) by [Tutsplus](https://tutsplus.com) -- [Validating With Models and Event Listeners](https://tutsplus.com/lesson/validating-with-models-and-event-listeners/) by [Tutsplus](https://tutsplus.com) - -## Meetups - -- [Laravel Meetup Germany](http://meetup.laravel.de/) by [Franz Liedke](https://twitter.com/franzliedke) -- [Danish Laravel Meetup](http://forums.laravel.io/viewtopic.php?id=7497) by [Peter Suhm](https://twitter.com/petersuhm) - -## Packages - -- v1.0 of [Revisionable](https://github.com/VentureCraft/revisionable) by [Chris Duell](https://twitter.com/duellsy) is now released diff --git a/issues/laravel-learnings-week-6.md b/issues/laravel-learnings-week-6.md deleted file mode 100644 index 0ca527c..0000000 --- a/issues/laravel-learnings-week-6.md +++ /dev/null @@ -1,43 +0,0 @@ -# Laravel Learnings: Week 6 - -Small update this week. I also decided to change the name from my posts to just "Laravel" so I can post about Laravel in general and not just about Laravel 4 specifically. - -## Laracon EU Announced - -[Shawn McCool](https://twitter.com/shawnmccool) has announced the dates for Laracon EU last thursday in his Laravel talk for a PHP Amsterdam user group meeting. Mark your calendars! August 30 - 31 will be 2 days of Laravel awesomeness. The conference will take place at the Bimhuis venue in Amsterdam. - -![Laracon EU Announcement](https://raw.github.com/driesvints/Articles/master/laravel-weekly/images/laracon-eu-announcement.jpg) - -## Laravel Meetup 20/04 - -Last night we had a Laravel meetup in Amsterdam, organised by [Jeroen Gerits](https://twitter.com/JeroenGerits). We had a great time talking about Laravel and everyday things, having a few drinks and some dinner and hanging out. It was nice meeting other Laravel developers in person. Thanks to everyone who came out! - -This will definitely not be the last one. Stay tuned for more meetups in the future! - -## Session Driver Update - -Laravel's default session driver changed so make sure to update your client side code! - -https://twitter.com/laravelphp/status/324366028647837696 - -## Laravel 4 Generators: Scaffolding - -[Jeffrey](https://twitter.com/jeffrey_way) added scaffolding support to his generators package. Your development workflow just became even faster! - -https://twitter.com/jeffrey_way/status/324274663226232834 - -## Resources - -- [Composer primer](http://daylerees.com/composer-primer) by [Dayle Rees](https://twitter.com/daylerees) -- [How to create a Facade in Laravel 4](http://fideloper.com/create-facade-laravel-4) by [Chris Fidao](https://twitter.com/fideloper) -- [Laravel 4 Vagrant Setup](https://github.com/duellsy/Laravel-4-Vagrant) by [Chris Duell](https://twitter.com/duellsy) -- [Why you should use a PHP Framework and why I’m using Laravel](http://juniorgrossi.com/why-you-should-use-a-php-framework-and-why-im-using-laravel/) by [Junior Grossi](https://twitter.com/junior_grossi) -- [Practical Laravel – payment integration – Stripe](http://maxoffsky.com/code-blog/practical-laravel-payment-integration-stripe/) by [Maksim Surguy](https://twitter.com/msurguy) - -## Screencasts - -- [Basic authentication](https://tutsplus.com/lesson/basic-authentication/) by [Tutsplus](https://tutsplus.com) - -## Packages - -- [Profiler package](https://github.com/loic-sharma/profiler) by [Loic Sharma](https://twitter.com/sharmaloic) \ No newline at end of file diff --git a/issues/laravel-learnings-week-7.md b/issues/laravel-learnings-week-7.md deleted file mode 100644 index 8d8f803..0000000 --- a/issues/laravel-learnings-week-7.md +++ /dev/null @@ -1,44 +0,0 @@ -# Laravel Learnings: Week 7 - -You might have noticed that my posts in this series are getting shorter. I'm trying to provide as much resources as possible in a small blog post for you to check real quick and not too much extra info. I feel this gives you a better way to check quickly what has happened in the last week and while not having to read too much. - -It's the end of april which means May is almost upon us and that's when Laravel 4 gets released! The wait is almost over. - -For the people who are interested, I'm doing an introduction talk about Laravel 4 on the 8th of May at MCS in Wilrijk. It's going to be a talk about the basics of Laravel and some of the new Laravel 4 functionality. You can RSVP [here](http://www.meetup.com/phpbenelux/events/115635052/). - -## Laracon EU CFP ends on Tuesday 30 April! - -Laracon EU CFP ends tomorrow. There's still time to [submit yours](https://heybigname.typeform.com/to/bY3H46) if you want to give a 45 minute presentation at Laracon EU. - -## New Laravel 4 Screencasts - -Taylor has been busy the past week and posted some new Laravel 4 screencasts. - -http://vimeo.com/64703617 - -http://vimeo.com/64779946 - -## PHP-FIG - -As of two weeks ago, [Taylor applied for membership](https://groups.google.com/forum/?fromgroups=#!topic/php-fig/yCrqftXXT-8) into the PHP-FIG user group. As of this moment the vote is going great and it looks like he's going to get accepted in. - -Now what is [PHP-FIG](http://www.php-fig.org/) exactly? It's a group of PHP developers which maintain popular PHP projects or are experts in the PHP community which got together to find ways in which they can work together. One of these ways is a set of coding standards called PSR-# which are being widely adopted by more and more PHP projects each day. - -Now why is it good that Taylor is on board? When he gets on board he gets a vote on all the important decisions the PHP-FIG group takes and will help create better ways for PHP projects to work together and improve the way PHP projects, which adopted the PHP-FIG standards, can develop their projects. This will also give Laravel a better position in the ever-growing PHP community. - -## Packages - -- [Enhanched Router](https://github.com/jasonlewis/enhanced-router) by [Jason Lewis](https://twitter.com/jasonclewis) -- [Laravel 4 NewRelic](https://github.com/In-Touch/laravel-newrelic) by [In-Touch](http://www.intouchinsight.com/) - -## Resources - -- [Laravel 4 Tutorials](https://bitbucket.org/beni/laravel-4-tutorial/wiki/Home) by beni -- [Testing Laravel Controllers](http://jeffreyway.github.io/blog/2013/04/20/testing-laravel-controllers/) by [Jeffrey Way](https://twitter.com/jeffrey_way) -- [Laravel Quick Tip – get previous / next records](http://maxoffsky.com/code-blog/laravel-quick-tip-get-previous-next-records/) by [Maksim Surguy](https://twitter.com/msurguy) -- [Laravel 4 Vagrant](https://github.com/bryannielsen/Laravel4-Vagrant) by [Bryan Nielsen](https://twitter.com/nielsenbryan) -- [Log errors to the database asynchronously in Laravel 4](https://gist.github.com/conradkleinespel/5476977) by [Conrad Kleinespel](https://twitter.com/conradktweets) - -## Talks - -- [An introduction to Laravel](http://www.youtube.com/watch?v=RxK48ixsq-A&hd=1) by [Shawn McCool](https://twitter.com/shawnmccool) (slides and audio) \ No newline at end of file diff --git a/issues/laravel-weekly-10.md b/issues/laravel-weekly-10.md deleted file mode 100644 index 4ed1314..0000000 --- a/issues/laravel-weekly-10.md +++ /dev/null @@ -1,106 +0,0 @@ -# Laravel Weekly #10 - -Welcome to the 10th edition of Laravel Weekly. I'm very happy to say that the series will be posted here, on Laravel.io, from now on. I'd like to thank Shawn and everyone else at Laravel.io for giving Laravel Weekly a new home. - -The posts have been given a few new features. Besides a new home, I'll also be doing interviews with community members from now on. I'll try to post an interview every 2 editions of Laravel Weekly. The first one is with [Niall O'Brien](http://laravel.io/topic/26/an-interview-with-niall-obrien), someone who has been involved with the Laravel community for quite a while now and is a well respected community member. - -I'll also be highlighting some resources in the news section, keeping a calendar for upcoming events (please send in your meetups, talks, etc) and also post general PHP related resources from now on. All in together, a little more content for you to enjoy each week. - -Again, I'd like to thank all of you for reading and for the great feedback you all have been giving. If you'd like to see your package, blog post, anything related to Laravel at all in this weekly blog post, contact me. - -Onwards to next week for issue #11! - -Dries -[@driesvints](https://twitter.com/driesvints) -[driesvints.com](http://driesvints.com) - -## News - -### Laravel 4 has been released! - -It's finally here! The long awaited update. Taylor did a marvelous job on the new version, taking it far beyond what we could have imagined it to be. Dayle has done a great job on the new design for the Laravel website as well. Look closely, might be that your face is in there somewhere! Thanks to everyone who helped out with testing, bug reports and contributing! - -Now go start building awesome stuff with Laravel 4! Also, it's Taylor's birthday today, so go wish him a happy one! - -Source: [http://laravel.com](http://laravel.com) - -### *Code Bright* released - -*A book by [Dayle Rees](https://twitter.com/daylerees)* - -Besides Laravel 4 being released today, you can also buy Dayle's book on Laravel 4 called *Code Bright*. *Code Bright* will be available as an ebook on Leanpub. Note that when you buy the ebook, you'll get future new chapters and updates for free. A specific release date for the printed version has not be set yet. - -*Source: [https://leanpub.com/codebright](https://leanpub.com/codebright)* - -### *Laravel Testing Decoded* released - -*A book by [Jeffrey Way](https://twitter.com/jeffrey_way)* - -And if that's not enought, Jeffrey's book on Testing in Laravel will also be released today. Together with Dayle's book you'll have quite some reading to do! - -*Source: [https://leanpub.com/laravel-testing-decoded](https://leanpub.com/laravel-testing-decoded)* - -### Laracon EU tickets are on sale - -*A Laravel conference* - -As of previous week, you can now order your tickets for Laracon EU. Early bird tickets are available for a limit amount of users so get them while they last. Besides the regular tickets, you can order VIP tickets which include a VIP dinner with the conference speakers, sponsors and staff. - -The venue for Laracon EU has limited places so don't wait too long to buy your tickets to make sure you can attend. The speaker info will be released in the following weeks. - -*Source: [http://laracon.eu/2013](http://laracon.eu/2013)* - -### Laravel.io Podcast - -*A podcast by [Niall O'Brian](https://twitter.com/niall_obrien)* - -Speaking of Niall, he recently started out a brand new Laravel.io podcast. In the first episode he talks with [Taylor Otwell](https://twitter.com/taylorotwell) about Laravel 4 and with [Shawn McCool](https://twitter.com/ShawnMcCool) about Laracon EU. It's a podcast by and for the Laravel community so if you feel about helping out just contact Niall to get involved. - -*Source: [http://laravel.io/topic/25/laravelio-podcast-episode-1-laravel-4-becomes-official-and-laracon-eu-2013](http://laravel.io/topic/25/laravelio-podcast-episode-1-laravel-4-becomes-official-and-laracon-eu-2013)* - -### Laravel 4: A Start at a RESTful API - -*A tutorial by [Chris Fidao](https://twitter.com/fideloper)* - -A couple of months ago, when the Laravel 4 beta was just a couple of months old, Chris wrote an article for [Nettuts](http://nettuts.com) on how to create RESTful APIs in Laravel 4. Because Laravel 4 will be released as of today, he has updated his article with the latest changes in the framework. - -*Source: [http://net.tutsplus.com/tutorials/php/laravel-4-a-start-at-a-restful-api](http://net.tutsplus.com/tutorials/php/laravel-4-a-start-at-a-restful-api)* - -### Data Grid package for Laravel 4 - -*A package by [Cartalyst](http://www.cartalyst.com/)* - -Cartalyst has released a new Laravel 4 package for working with large data sets. Their package allows you to shift from pagination to data filtration. Combined with the build-in Javascript plugin, it proofs to be a very powerful package which can be set up very quickly. - -*Source: [http://docs.cartalyst.com/data-grid](http://docs.cartalyst.com/data-grid)* - -## Resources - -### Articles - -[Laravel 4 Gems: Route parameter binding](http://www.develophp.org/2013/05/laravel-4-route-parameter-binding/) by [Franz Liedke](https://twitter.com/franzliedke) -[Getting started with Laravel 4](http://culttt.com/2013/04/29/getting-started-with-laravel-4/) by [Philip Brown](https://twitter.com/philipbrown) -[Laravel 4 Migrations](http://culttt.com/2013/05/06/laravel-4-migrations/) by [Philip Brown](https://twitter.com/philipbrown) -[Setting up your first Laravel 4 Model](http://culttt.com/2013/05/13/setting-up-your-first-laravel-4-model) by [Philip Brown](https://twitter.com/philipbrown) -[Getting started with testing Laravel 4 Models](http://culttt.com/2013/05/20/getting-started-with-testing-laravel-4-models/) by [Philip Brown](https://twitter.com/philipbrown) -[Laravel 4 Fixture Replacement with FactoryMuff](http://culttt.com/2013/05/27/laravel-4-fixture-replacement-with-factorymuff/) by [Philip Brown](https://twitter.com/philipbrown) -[Laravel 4: A few helpful tips](http://craigcartmell.com/article/show/4/Laravel-4:-A-few-helpful-tips) by [Craig Cartmell](https://twitter.com/craigcartmell1) -[How to Write Testable and Maintainable Code in PHP](http://net.tutsplus.com/tutorials/php/how-to-write-testable-and-maintainable-code-in-php) by [Chris Fidao](https://twitter.com/fideloper) - -### Packages - -[LMongo - A MongoDB package for Laravel 4](https://github.com/navruzm/lmongo) by [Mustafa Navruz](https://twitter.com/navruzm) -[Laravel Eloquent MongoDB](https://github.com/jenssegers/Laravel-MongoDB) by [Jens Segers](https://twitter.com/jenssegers) -[Twig for Laravel 4](https://github.com/cogpowered/TwigBridge) by [Cog Powered](http://cogpowered.com/) -[Laravel 4 Hashing](https://github.com/robclancy/laravel4-hashing) by [Robert Clancy](https://twitter.com/RobboClancy) - -### Other links - -[Laravel 4 Sublime Text 2 snippets](https://github.com/bliker/laravel4-snippets) by [Samuel Vasko](https://github.com/bliker) - -## Events - -30/05 - Meetup - [Celebrate the stable release of Laravel 4!](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/120430402/) -04/06 - Meetup - [Laravel 4 Release party!](http://www.meetup.com/Laravel-Framework-Fullerton-Meetup-Group/events/117567592/) -27/06 - Talk - [Laravel For The CodeIgniter Developer by Taylor Otwell](http://peersconf.com/2013/sessions#25) -30/08 - 31/08 - Conference - [Laracon EU 2013](http://laracon.eu/2013/) diff --git a/issues/laravel-weekly-11.md b/issues/laravel-weekly-11.md deleted file mode 100644 index 5a8e52f..0000000 --- a/issues/laravel-weekly-11.md +++ /dev/null @@ -1,102 +0,0 @@ -# Laravel Weekly #11 - -Hey, welcome to another issue of Laravel Weekly. Laravel 4 is just a week old now and there have already been an insane amount of resources posted. I'll try to get you up to date on everything. - -First of all, the Laravel IRC channel has moved to [laravel.io](http://laravel.io) and can now be found under [laravel.io/irc](http://laravel.io/irc). Come join us on IRC if you have some questions regarding Laravel or just want to chat with some fellow Laravel developers! - -[The .net award winners have been announced](http://www.thenetawards.com/) and sadly Laravel wasn't chosen as the winner in "Open Source project of the year". But hey, with competitors like [Bootstrap](http://twitter.github.io/bootstrap/) it's not a shame that we lost. We'll show them next year! - -Also, people [have been receiving](https://twitter.com/jonathanmarvens/status/341195091270041600) their [Laravel 4 shirts](https://twitter.com/imjakechapman/status/341658953631010816). Did you get yours already? Let us know in the comments below! If you missed out on the last batch there's a second one in the run [here](http://teespring.com/laravel-redux). - -Thanks for reading and see you all next week! - -Dries -[@driesvints](https://twitter.com/driesvints) -[driesvints.com](http://driesvints.com) - -## News - -### Laravel 3 Documentation - -I've been seeing Laravel 3 developers panicking because the Laravel 3 docs seem to have disappeared! No worries, they're still online at [three.laravel.com/docs](http://three.laravel.com/docs). - -*Source: [https://twitter.com/laravelphp/status/340202010957721600](https://twitter.com/laravelphp/status/340202010957721600)* - -### Laracon EU: First Speakers Announced - -The first speakers for [Laracon EU](http://laracon.eu/2013/) have been announced with more to be added soon. Make sure to get your ticket to see these awesome speakers in action! 25% of the tickets have been sold so far so don't sleep on it! - -*Source: [https://twitter.com/laraconeu/status/340123245036593152](https://twitter.com/laraconeu/status/340123245036593152)* - -### Easier Laravel 4 Installation - -*A quick tip by [Laravel](https://twitter.com/laravelphp)* - -Composer has a neat little feature which allows you to install a composer package from [packagist](https://packagist.org/) and immidiatly run a composer install command all in a simultaneous task. Installing Laravel 4 doesn't gets easier then this: - - composer create-project laravel/laravel - -*Source: [https://twitter.com/laravelphp/status/340461054263955457](https://twitter.com/laravelphp/status/340461054263955457)* - -### From Apprentice To Artisan - -[Taylor](https://twitter.com/taylorotwell) seems to be working on a new advanced Laravel book. It's all very mysterious still so we'll get you the details as soon as they are revealed! - -*Source: [https://twitter.com/taylorotwell/status/340197912476794880](https://twitter.com/taylorotwell/status/340197912476794880)* - -### Laravel 4 Release - -*An article by [Maksim Surguy](https://twitter.com/msurguy)* - -Maksim created a nice article which details about everything that's new in Laravel 4, a comparison of Laravel 3 with Laravel 4, an overview of Laravel's release schedule as well as a great list of resources that should get you started with Laravel 4. - -*Source: [http://maxoffsky.com/code-blog/laravel-4-is-released/](http://maxoffsky.com/code-blog/laravel-4-is-released/)* - -### Laravel 4 Primer - -*An article by [The Nerdary](http://www.thenerdary.net/)* - -[Kenny Meyers](http://kennymeyers.com/) has posted a great article with a mini-review on Laravel 4 alongside a list of interesting resources. - -*Source: [http://www.thenerdary.net/post/52067531360/laravel-4-primer](http://www.thenerdary.net/post/52067531360/laravel-4-primer)* - -### Laravel 4 Language Files - -*A Github repository by [Caouecs](https://twitter.com/caouecs)* - -A nice repository which should get you jump-started on translations for your Laravel 4 application. - -*Source: [https://github.com/caouecs/Laravel4-lang](https://github.com/caouecs/Laravel4-lang)* - -## Resources - -### Articles - -[Laravel 4 on Google AppEngine for PHP](http://blog.neoxia.com/laravel-4-on-google-appengine-for-php/) by [Gilles Mergoil](https://twitter.com/gmergoil) -[Simple Website with Orchestra Platform 2 (Part 1)](http://orchestraplatform.com/blogs/2013/06/01/simple-website-1/) by [Mior Muhammad Zaki](http://crynobone.com/) -[Simple Website with Orchestra Platform 2 (Part 2)](http://orchestraplatform.com/blogs/2013/06/01/simple-website-2/) by [Mior Muhammad Zaki](http://crynobone.com/) -[Simple Website with Orchestra Platform 2 (Part 3)](http://orchestraplatform.com/blogs/2013/06/01/simple-website-3/) by [Mior Muhammad Zaki](http://crynobone.com/) -[Simple Website with Orchestra Platform 2 (Part 4)](http://orchestraplatform.com/blogs/2013/06/02/simple-website-4/) by [Mior Muhammad Zaki](http://crynobone.com/) -[Laravel 4 Gems: Query results caching](http://www.develophp.org/2013/05/laravel-4-query-results-caching/) by [Franz Liedke](http://www.develophp.org/) -[Laravel 4 Gems: Model query scopes](http://www.develophp.org/2013/05/laravel-4-model-query-scopes/) by [Franz Liedke](http://www.develophp.org/) -[Laravel 4 Gems: Maintenance mode](http://www.develophp.org/2013/05/laravel-4-maintenance-mode/) by [Franz Liedke](http://www.develophp.org/) -[Modules in Laravel 4](http://creolab.hr/2013/05/modules-in-laravel-4/) by [Boris Strahija](https://twitter.com/strija) - -### Packages - -[Mongovel](https://github.com/julien-c/mongovel) by [Julien Chaumond](https://twitter.com/julien_c) - -### Screencasts - -[Quick Introduction To Basset's Application Collection](http://vimeo.com/67466414) by [Jason Lewis](http://jasonlewis.me/) - -### Other links - -[Laravel Austin meetup group](http://www.meetup.com/Laravel-Austin/) - -## Events - -04/06 - Meetup - Fullerton - [Laravel 4 Release party!](http://www.meetup.com/Laravel-Framework-Fullerton-Meetup-Group/events/117567592/) -27/06 - Talk - Chicago - [Laravel For The CodeIgniter Developer by Taylor Otwell](http://peersconf.com/2013/sessions#25) -01/07 - Meetup - New York - [Community intro/show and tell](http://www.meetup.com/New-York-Laravel/events/122708162/) -30/08 - 31/08 - Conference - Amsterdam - [Laracon EU 2013](http://laracon.eu/2013/) diff --git a/issues/laravel-weekly-12.md b/issues/laravel-weekly-12.md deleted file mode 100644 index 093be11..0000000 --- a/issues/laravel-weekly-12.md +++ /dev/null @@ -1,90 +0,0 @@ -# Laravel Weekly #12 - -Hi there, welcome to the 12th issue of Laravel Weekly. Here's an overview of what happened last week and where you can find the latest Laravel resources. - -Did you know that Laravel turned two last sunday (June 9)? I'm still amazed by how young this awesome framework is. - -While the first batch of Laravel T-shirts are starting to reach their buyers, [the second batch](http://teespring.com/laravel-redux) of shirts has ended. It's now officially vintage! - -See you next week for a new issue! - -Dries -[@driesvints](https://twitter.com/driesvints) -[driesvints.com](http://driesvints.com) - -## News - -### Documentation For Helpers - -There is now a new section in the Laravel 4 documentation on helper methods that ship with the framework. - -*Source: [http://laravel.com/docs/helpers](http://laravel.com/docs/helpers)* - -### Laravel Changelog Through Artisan - -You can now check out the Laravel changelog through a handy Artisan command. - - php artisan changes - -*Source: [https://twitter.com/laravelphp/status/342713514290470912](https://twitter.com/laravelphp/status/342713514290470912)* - -### Snappy Released - -*A customer service tool by [UserScape](http://www.userscape.com/)* - -Snappy, a great customer support tool has finally been released. It's built upon Laravel and has been developed by UserScape, the company where Taylor works for. If you're looking for an easy-to-use customer support tool then make sure to check it out! - -*Source: [http://www.besnappy.com/](http://www.besnappy.com/)* - -### Laravel Testing Decoded: Printed Book - -*A book by [Jeffrey Way](https://twitter.com/jeffrey_way)* - -For those who were waiting for it, Laravel Testing Decoded is now available as a printed book. - -*Source: [http://www.lulu.com/shop/jeffrey-way/laravel-testing-decoded/paperback/product-21060562.html](http://www.lulu.com/shop/jeffrey-way/laravel-testing-decoded/paperback/product-21060562.html)* - -### Routes: First In, First Out - -*An article by [Jason Lewis](https://twitter.com/jasonclewis)* - -Jason wrote an article on route sequence and some things you might want to consider when ordering your routes. - -*Source: [http://laravel.io/topic/30/routes-first-in-first-out](http://laravel.io/topic/30/routes-first-in-first-out)* - -### Platform 2 Quick Start Guide - -*An application by [Cartalyst](http://www.cartalyst.com/)* - -While the documentation is being written you can use this quick-start guide for now to get started with Cartalyst's Platform 2 application. - -*Source: [https://gist.github.com/driesvints/b0730aeeccd55fbb2549](https://gist.github.com/driesvints/b0730aeeccd55fbb2549)* - -## Resources - -### Articles - -[Fixing the Mcrypt & Composer errors in Laravel 4 (MAMP only)](http://brideo.co.uk/fixing-the-mcrypt-composer-errors-in-laravel-4-mamp-only/) by [Nathan McBride](https://twitter.com/BrideoWeb) -[Laravel 4 tutorial – validation and front end – part 3](http://www.codeforest.net/laravel-4-tutorial-validation-frontend) by [Boris Strahija](https://twitter.com/strija) -[Extending the Request and Response class in Laravel 4](http://fideloper.com/extend-request-response-laravel) by [Chris Fidao](http://fideloper.com/) -[Whoops! PHP Errors for Cool Kids](http://net.tutsplus.com/tutorials/php/whoops-php-errors-for-cool-kids/) by [Nettuts](http://net.tutsplus.com/) -[Creating the Twitter following model in Laravel 4](http://culttt.com/2013/06/03/creating-the-twitter-following-model-in-laravel-4/) by [Philip Brown](https://twitter.com/philipbrown) -[Getting started with Laravel 4](http://raffworks.com/category/series/getting-started-with-laravel-4/) by [Raffworks](http://raffworks.com/) -[Laravel 4 Eloquent Model Relationships](http://culttt.com/2013/06/10/laravel-4-eloquent-model-relationships/) by [Philip Brown](https://twitter.com/philipbrown) -[Sending E-Mail with Laravel 4 using mail](http://maxoffsky.com/code-blog/sending-e-mail-with-laravel-4-using-mail/) by [Maksim Surguy](https://twitter.com/msurguy) - -### Packages - -[Omni - A Laravel profiler package](https://github.com/sorora/omni) by [David Bowen](https://github.com/sorora) -[Larry Four - Clean text generators](http://xcmer.github.io/larry-four-generator/) by [Raahul Seshadri](https://github.com/XCMer) - -### Screencasts - -[Modern Testing in PHP with Codeception](https://tutsplus.com/course/modern-testing-in-php-with-codeception/) by [Tutsplus](https://tutsplus.com) - -## Events - -27/06 - Talk - Chicago - [Laravel For The CodeIgniter Developer by Taylor Otwell](http://peersconf.com/2013/sessions#25) -01/07 - Meetup - New York - [Community intro/show and tell](http://www.meetup.com/New-York-Laravel/events/122708162/) -17/08 - Talk - Boston - [Introduction to Laravel](http://www.northeastphp.org/talks/view/10/Introduction-to-Laravel) -30/08 - 31/08 - Conference - Amsterdam - [Laracon EU 2013](http://laracon.eu/2013/) \ No newline at end of file diff --git a/issues/laravel-weekly-13.md b/issues/laravel-weekly-13.md deleted file mode 100644 index 9f7609b..0000000 --- a/issues/laravel-weekly-13.md +++ /dev/null @@ -1,73 +0,0 @@ -# Laravel Weekly #13 - -Here's a new small Laravel Weekly update. - -[Laracon.eu](http://laracon.eu/2013) is a little over 2 months away as more details are getting released. There's still plenty of time left to buy your tickets but don't wait until the last possible second! - -Much packages have been released this week. It seems that development with Laravel 4 is really picking up its pace. If you want yours to be included here, make sure to let me know. - -I'll be back next week with more news from Laraland! - -Dries -[@driesvints](https://twitter.com/driesvints) -[driesvints.com](http://driesvints.com) - -## News - -### New Speakers Announced For Laracon.eu - -Two new speakers for [Laracon.eu](http://laracon.eu) have been announced today. Frank de Jonge will take you beyond the world of PHP and Jeffrey Way will give you some great tips and tricks for testing in Laravel. - -Also, the accommodations details have been updated. If you still need a place to stay, make sure to check it out! - -*Source: [http://laracon.eu/2013](http://laracon.eu/2013)* - -### Announcing Wardrobe - -Eric Barnes, who works at [Userscape](http://www.userscape.com/), has announced a personal project called [Wardrobe](https://github.com/ericbarnes/wardrobe), a minimal blogging platform built on top of Laravel. - -*Source: [http://ericlbarnes.com/post/announcing-wardrobe](http://ericlbarnes.com/post/announcing-wardrobe)* - -### Taylor Has A Blog Now - -Taylor, the creator of Laravel, [has a blog now](http://taylorotwell.com/). Although he only recently started writing on his blog, you might want to keep an eye on it for interesting posts about Laravel. [In his first post](http://taylorotwell.com/post/forward-gaze) he talks about Laravel 4.1 which is targeted for a stable release in November. - -*Source: [http://taylorotwell.com/post/forward-gaze](http://taylorotwell.com/post/forward-gaze)* - -### Laravel: From Apprentice To Artisan - -Speaking of which, Taylor's book seems to be coming along nicely. You can now [sign up on Leanpub](https://leanpub.com/laravel) to be notified when it gets released. - -*Source: [https://leanpub.com/laravel](https://leanpub.com/laravel)* - -## Resources - -### Articles - -[Combining Laravel 4 and Backbone](http://hub.tutsplus.com/tutorials/combining-laravel-4-and-backbone--net-31745) by [Tutsplus](http://tutsplus.com/) -[Laravel 4: Generating Unique Slugs Elegantly](http://chrishayes.ca/blog/code/laravel-4-generating-unique-slugs-elegantly) by [Chris Hayes](http://chrishayes.ca/) - -### Packages - -[Laravel Admin Panel](https://github.com/stevemo/cpanel) by [Steve](https://github.com/stevemo) -[Laravel Package Unit Testing Helper](https://github.com/orchestral/testbench) by [Mior Muhammad Zaki](https://github.com/crynobone) -[Laravel4-Gumby2](https://github.com/caouecs/Laravel4-Gumby2) by [Caouecs](https://github.com/caouecs) -[HttpStatus](https://github.com/nWidart/HttpStatus-l4-package) by [Nicolas Widart](https://github.com/nWidart) -[Laravel 4 LogViewer](https://github.com/mikemand/logviewer) by [Micheal Mand](https://github.com/mikemand) - -### Screencasts - -[Laravel Screencasts](http://www.youtube.com/user/fallendown2005/videos) by [Kris Rapier](https://twitter.com/Kris_Rapier) - -### Other Links - -[Awesome PHP Libraries and Resources](https://gist.github.com/ziadoz/1677679) by [Jamie York](https://github.com/ziadoz) -[Blade Snippets for Sublime Text](https://github.com/AAlakkad/Blade-Snippets-Reloaded) by [Ammar Alakkad](https://github.com/AAlakkad) - -## Events - -27/06 - Talk - Chicago - [Laravel For The CodeIgniter Developer](http://peersconf.com/2013/sessions#25) by [Taylor Otwell](https://twitter.com/taylorotwell) -27/06 - Talk - The Internet - [Laravel 4: Yet Another Framework… but different](http://nomadphp.com/2013/05/05/june-2013-phil-sturgeon-laravel-4-yet-another-framework-but-different/) by [Phil Sturgeon](https://twitter.com/philsturgeon) -01/07 - Meetup - New York - [Community intro/show and tell](http://www.meetup.com/New-York-Laravel/events/122708162/) -17/08 - Talk - Boston - [Introduction to Laravel](http://www.northeastphp.org/talks/view/10/Introduction-to-Laravel) -30/08 - 31/08 - Conference - Amsterdam - [Laracon EU 2013](http://laracon.eu/2013/) \ No newline at end of file diff --git a/issues/laravel-weekly-14.md b/issues/laravel-weekly-14.md deleted file mode 100644 index 8ed3c3b..0000000 --- a/issues/laravel-weekly-14.md +++ /dev/null @@ -1,88 +0,0 @@ -# Laravel Weekly #14 - -While development on Laravel 4.1 continues, more and more packages for Laravel 4 get released each week. Especially Maxime's [Rocketeer](http://anahkiasen.github.io/rocketeer/) package for deploying your app is one of the eye-catchers of the week. - -[Peers conference](http://peersconf.com/2013/) is happening this week and Taylor will be doing a workshop and talk. If you are attending, make sure to catch those. I'm not sure if they're going record the sessions but I'll try to link to them should they get released. - -Thanks for reading! - -Dries -[@driesvints](https://twitter.com/driesvints) -[driesvints.com](http://driesvints.com) - -## News - -### Win a ticket to Laracon EU - -[Visual Chefs](http://www.visualchefs.com/), one of Laracon EU's gold sponsers, is raffling four tickets for Laracon EU. - -*Source: [http://www.visualchefs.com/laracon](http://www.visualchefs.com/laracon)* - -### Laravel Testing Decoded - Translations - -[Jeffrey](https://twitter.com/jeffrey_way)'s book "Laravel Testing Decoded" is currently being translated into different languages. Here's the list of languages and their Leanpub pages where you can monitor the progress. - -[Japanese](https://leanpub.com/laravel-testing-decoded-japanese) -[Español](https://leanpub.com/laravel-testing-decoded-spanish) -[italiana](https://leanpub.com/laravel-testing-decoded-italian) -[magyar](https://leanpub.com/laravel-testing-decoded-hungarian) -[Nederlands](https://leanpub.com/laravel-testing-decoded-dutch) -[Deutsch](https://leanpub.com/laravel-testing-decoded-german) -[français](https://leanpub.com/laravel-testing-decoded-french) - -### Rocketeer - -Rocketeer, a package by [Maxime Fabre](https://twitter.com/Anahkiasen), will help you deploy your Laravel 4 applications. It makes use of the new illuminate/remote component so it's Laravel 4.1 specific. - -*Source: [http://anahkiasen.github.io/rocketeer/](http://anahkiasen.github.io/rocketeer/)* - -### Platform 2 Screencast - -[Cartalyst](http://www.cartalyst.com/) has released a screencast for its newly released Platform2 application. It'll give you a good overview on what you can expect from the application. - -*Source: [http://vimeo.com/69030197](http://vimeo.com/69030197)* - -### Interview With Phil Sturgeon - -[Seven PHP](http://7php.com/) did an interview with [Phil Sturgeon](https://twitter.com/philsturgeon), the founder of PyroCMS and a prominent member of PHP-FIG. - -*Source: [http://7php.com/php-interview-phil-sturgeon/](http://7php.com/php-interview-phil-sturgeon/)* - -## Resources - -### Articles - -[Creating a Laravel 4 package](http://culttt.com/2013/06/24/creating-a-laravel-4-package/) by [Philip Brown](https://twitter.com/philipbrown) -[How to use Propel in Laravel 4](http://picqer.com/blog/propel-with-laravel) by [Casper Bakker](https://plus.google.com/100717136083690535575/posts) -[Introduction to Laravel Framework](http://laravelbook.com/laravel-introduction/) -[How to Install and Use Wardrobe CMS](http://www.massimilianomarini.com/22/06/2013/how-install-ans-use-wardrobe-cms) by [Massimiliano Marini](https://twitter.com/maxmarini) -[How to add a new column to the database using migrations](http://www.tonylea.com/2013/how-to-add-a-new-column-to-the-database-using-migrations/) by [Tony Lea](http://www.tonylea.com/) -[Testing your Packagist/Composer package locally](http://juniorgrossi.com/testing-your-packagistcomposer-package-locally) by [Junior Grossi](http://juniorgrossi.com/) -[Setting up Vagrant with Laravel 4](http://culttt.com/2013/06/17/setting-up-vagrant-with-laravel-4/) by [Philip Brown](https://twitter.com/philipbrown) - -### Packages - -[Laravel Profiler](https://github.com/onigoetz/profiler) by [Stéphane Goetz](http://www.onigoetz.ch/) -[Prologue Database](https://github.com/Prologue/Database) by [Dries Vints](https://twitter.com/driesvints) -[Dompdf](https://github.com/thujohn/pdf-l4) by [Jonathan Thuau](https://github.com/thujohn) -[Google Analytics for Laravel 4](https://github.com/thujohn/analytics-l4) by [Jonathan Thuau](https://github.com/thujohn) -[InkTranslatable](https://github.com/orkhan/InkTranslatable) by [Orkhan Maharramli](https://twitter.com/orkhanm) - -### Screencasts - -[A video tutorial series](http://www.youtube.com/playlist?list=PL09BB956FCFB5C5FD) by [Andrew Perkins](http://andrewperkins.net/) - -### Other Links - -[Laravel VM](https://bitbucket.org/jonathanmarvens/laravel-vm/src) by [Jonathan Barronville](http://jonathanmarvens.com/) -[Twitter Bootstrap themes for Wardrobe](https://github.com/koomai/bootstrap-themes) by [Sid](https://twitter.com/koomai) -[Laravel 4 snippets](https://github.com/bliker/laravel4-snippets) by [Samuel Vasko](https://github.com/bliker) - -## Events - -26/06 - Workshop - Chicago - [Coding Workshop - Dive Into Laravel](http://peersconf.com/2013/sessions#24) by [Taylor Otwell](https://twitter.com/taylorotwell) -27/06 - Talk - Chicago - [Laravel For The CodeIgniter Developer](http://peersconf.com/2013/sessions#25) by [Taylor Otwell](https://twitter.com/taylorotwell) -27/06 - Talk - The Internet - [Laravel 4: Yet Another Framework… but different](http://nomadphp.com/2013/05/05/june-2013-phil-sturgeon-laravel-4-yet-another-framework-but-different/) by [Phil Sturgeon](https://twitter.com/philsturgeon) -01/07 - Meetup - New York - [Community intro/show and tell](http://www.meetup.com/New-York-Laravel/events/122708162/) -17/08 - Talk - Boston - [Introduction to Laravel](http://www.northeastphp.org/talks/view/10/Introduction-to-Laravel) -30/08 - 31/08 - Conference - Amsterdam - [Laracon EU 2013](http://laracon.eu/2013/) \ No newline at end of file diff --git a/issues/laravel-weekly-15.md b/issues/laravel-weekly-15.md deleted file mode 100644 index 4b4c5c0..0000000 --- a/issues/laravel-weekly-15.md +++ /dev/null @@ -1,81 +0,0 @@ -# Laravel Weekly #15 - -Hey there, welcome to Laravel Weekly issue #15! - -Wow, has it already been 15 issues? Time flies! It's been about 3,5 months ago [since I first started posting](http://driesvints.com/blog/weekly-laravel-4-learnings-week-1/) these series. I'm really happy about how Laravel Weekly has evolved so far. - -But there's always room for improvement. I've got some more plans in mind for LW, including a possible newsletter. Before we get started on that, I'd first like to know what all of you think about LW so far. I've created a little 6-question survey so you can tell what you'd like to see added or changed to LW. It'll only take a few minutes of your time. - -[Please help us by filling in this 6-question survey](http://laravelweekly.typeform.com/to/Ckj2L5) - -Thank you so much! :) - -See you next week! - -Dries -[@driesvints](https://twitter.com/driesvints) -[driesvints.com](http://driesvints.com) - -## News - -### Laravel Packages Registry - -[Maxime Fabre](https://twitter.com/anahkiasen) has created a website which lists all of the Laravel packages on [https://packagist.org](packagist.org). - -On a side-note: apparently there are already 300+ packages developed for Laravel 4. Great work community! - -*Source: [http://registry.autopergamene.eu/](http://registry.autopergamene.eu/)* - -### Wardrobe Documentation - -[Wardrobe](http://wardrobecms.com/), the CMS built on Laravel 4 by [Eric Barnes](https://twitter.com/ericlbarnes) now has [a separate repository](https://github.com/wardrobecms/docs) for its documentation. - -*Source: [https://github.com/wardrobecms/docs](https://github.com/wardrobecms/docs)* - -### Laravel Essentials Reloaded - -[Jeffrey Way](https://twitter.com/jeffrey_way) recently left [Nettuts](http://net.tutsplus.com/) to focus entirely on [Tutsplus Premium](https://tutsplus.com). One of the things he's planning is a refreshed course of Laravel 4 Essentials tutorials. - -*Source: [https://tutsplus.com/2013/06/producers-corner/](https://tutsplus.com/2013/06/producers-corner/)* - -### New php.net Website - -Not really Laravel related but relevant for PHP. You might or might not have noticed it but [php.net](http://php.net/) recently updated its website with a theme that had been in the pipeline for quite some time. - -*Source: [http://php.net/](http://php.net/)* - -### Interview with Taylor Otwell - -[7PHP](http://7php.com/) recently did an interview with Taylor. - -*Source: [http://7php.com/php-interview-taylor-otwell/](http://7php.com/php-interview-taylor-otwell/)* - -## Resources - -### Articles - -[Setting up your first Laravel 4 Controller](http://culttt.com/2013/07/01/setting-up-your-first-laravel-4-controller) by [Philip Brown](https://twitter.com/philipbrown) -[Using multiple DB connections in Laravel](http://stackoverflow.com/questions/17410049/laravel-4-connect-to-other-database/17412301#17412301) by [Chris Fidao](https://twitter.com/fideloper) -[Single table inheritance with Eloquent (laravel 4)](http://snooptank.com/single-table-inheritance-with-eloquent-laravel-4/) by Kapil Verma - -### Packages - -[Twitter API for Laravel 4](https://github.com/thujohn/twitter-l4) by [Jonathan Thuau](https://github.com/thujohn) -[Laravel 4 Artisan commands to communicate with Stormpath API](https://github.com/bretterer/laravel-stormpath-artisan) by [bretterer](https://github.com/bretterer) -[Wardrobe Disqus](https://github.com/rtablada/wardrobe-disqus) by [Ryan Tablada](https://github.com/rtablada) -[Cachebusting package for Laravel 4](https://github.com/ceesvanegmond/laravel4-cachebust) by [Cees van Egmond](https://github.com/ceesvanegmond) -[Laravel4 Minify Package](https://github.com/ceesvanegmond/laravel4-minify) by [Cees van Egmond](https://github.com/ceesvanegmond) -[Prologue Phpconsole](http://prologue.github.io/Phpconsole/) by [Dries Vints](https://twitter.com/driesvints) -[laravel-backup](https://github.com/schickling/laravel-backup) by [Johannes Schickling](https://github.com/schickling) - -### Other Links - -[PHP 5.5: The Power to Yield](http://cogitolearning.co.uk/) by [Cogito Learning](http://cogitolearning.co.uk/) -[Clockwork - Chrome extension for PHP development](https://github.com/itsgoingd/clockwork-chrome) by [itsgoingd](https://github.com/itsgoingd) -[php.net manuals on Github](https://github.com/salathe/phpdoc-en) - -## Events - -25/07 - Meeting - Vienna - [Laravel Frameworkers Vienna](http://www.meetup.com/Laravel-Frameworkers-Vienna/) -17/08 - Talk - Boston - [Introduction to Laravel](http://www.northeastphp.org/talks/view/10/Introduction-to-Laravel) -30/08 - 31/08 - Conference - Amsterdam - [Laracon EU 2013](http://laracon.eu/2013/) \ No newline at end of file diff --git a/issues/laravel-weekly-16.md b/issues/laravel-weekly-16.md deleted file mode 100644 index c3f6890..0000000 --- a/issues/laravel-weekly-16.md +++ /dev/null @@ -1,55 +0,0 @@ -# Laravel Weekly #16 - -Small update this week. - -A lot of you already responded to the Laravel Weekly survey, thank you so much for that! If you haven't filled in the survey yet then [please take a minute to fill it in](https://laravelweekly.typeform.com/to/Ckj2L5). - -I hope you enjoy this week's LW. We'll be back next week with more news and resources. - -Thanks for reading! - -Dries - -## News - -### Geeks Giving For Aids - -[Phil Sturgeon](https://twitter.com/philsturgeon), original creator of [PyroCMS](https://www.pyrocms.com/) and currently lead engineer at [Kapture](http://www.kaptu.re/) [is raising money](http://philsturgeon.co.uk/blog/2013/07/geeks-giving-for-aids) in support for a charity event called [Braking Aids](http://brakingaidsride.org/). Besides helping out Phil with his fund raiser, there's something in it for you as well if you donate. A lot of companies like [Userscape](http://www.userscape.com/), [Fortrabbit](http://fortrabbit.com/) and [Statamic](http://statamic.com/) amongst others are giving discounts to their projects if you donate. - -*Source: [http://philsturgeon.co.uk/blog/2013/07/geeks-giving-for-aids](http://philsturgeon.co.uk/blog/2013/07/geeks-giving-for-aids)* - -### Laravel Weekly Survey - -No less then 143 people already responded to the survey we held last week. Thank you so much! We're goin to leave it online one more week before posting the final results so if you haven't gotten a chance yet to [fill in the survey](https://laravelweekly.typeform.com/to/Ckj2L5) please do so this week. It's a small 6 question survey so it won't take much of your time. - -*Source: [https://laravelweekly.typeform.com/to/Ckj2L5](https://laravelweekly.typeform.com/to/Ckj2L5)* - -## Resources - -### Articles - -[Laravel 4: Methods for Staying Organized](http://chrishayes.ca/blog/code/laravel-4-methods-staying-organized) by [Chris Hayes](http://chrishayes.ca/) -[AWS Service Provider for Laravel 1.0.4](http://blogs.aws.amazon.com/php/post/TxQU0CC9W7FAUG/AWS-Service-Provider-for-Laravel-1-0-4) by [Jeremy Lindblom](https://twitter.com/jeremeamia) -[Creating flexible Controllers in Laravel 4 using Repositories](http://culttt.com/2013/07/08/creating-flexible-controllers-in-laravel-4-using-repositories/) by [Philip Brown](https://twitter.com/philipbrown) -[Speaker & Attendee Feedback Of The Previous Laravel4 Talk Of NomadPHP June 2013](http://7php.com/feedback-nomadphp-june-2013/) by [7PHP](http://7php.com/) - -### Packages - -[Laravel 4 WebArtisan](https://github.com/jn-Jones/web-artisan) by [Jones](https://github.com/JN-Jones) -[Packagist API for Laravel 4](https://github.com/thujohn/packagist-l4) by [Jonathan Thuau](https://github.com/thujohn) -[Croissant: A Laravel Project](http://www.developer13.com/post/croissant-a-laravel-project) by [Jesse Terry](http://www.developer13.com/) -[Former v3.0.0](https://github.com/Anahkiasen/former) by [Maxime Fabre](https://github.com/Anahkiasen) -[RSS builder for Laravel 4](https://github.com/thujohn/rss-l4) by [Jonathan Thuau](https://github.com/thujohn) - -### Other Links - -[Advanced Deployment Practices In PHP](https://leanpub.com/php-deployment) by [Ryan Tablada](http://ryantablada.com/) - -## Events - -18/07 - Meeting - Austin, TX - [Welcome to Laravel Austin!](http://www.meetup.com/Laravel-Austin/) -18/07 - Meeting - Washington, DC - [Meeting up for the first time](http://www.meetup.com/Capital-Laravel-Group/events/127827542/) -25/07 - Meeting - Vienna - [Laravel Frameworkers Vienna](http://www.meetup.com/Laravel-Frameworkers-Vienna/) -08/08 - Meeting - Fishers, IN - [Hang Out With Other PHP, Laravel, & Mobile App Devs](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/128471462/) -17/08 - Talk - Boston, MA - [Introduction to Laravel](http://www.northeastphp.org/talks/view/10/Introduction-to-Laravel) -30/08 - 31/08 - Conference - Amsterdam - [Laracon EU 2013](http://laracon.eu/2013/) \ No newline at end of file diff --git a/issues/laravel-weekly-17.md b/issues/laravel-weekly-17.md deleted file mode 100644 index 16d9b23..0000000 --- a/issues/laravel-weekly-17.md +++ /dev/null @@ -1,119 +0,0 @@ -# Laravel Weekly #17 - -It's been quite the week! So much has happened. CodeIgniter seeking a new maintainer, Taylor releasing his new book, the final Laracon EU speakers announced, and so on... - -We've also wrapped up the survey we held for the last two weeks. We'll be working hard on the requested features so stay tuned for that. - -Thanks for reading and see you next week! - -## News - -### Final Laracon EU Speakers Announced - -As we're getting more closer to Laracon EU, the final speakers have been announced. [Taylor Otwell](https://twitter.com/taylorotwell), the creator of the framework will be speaking as well as [Fabien Potencier](https://twitter.com/fabpot), creator of the Symfony framework. -[Ross Tuck](https://twitter.com/rosstuck), who completes the line-up, will be speaking about the HTTP protocol. - -*Source: [http://laracon.eu/2013/](http://laracon.eu/2013/)* - -### Laravel: From Apprentice To Artisan released - -Taylor finished and released his book ["Laravel: From Apprentice To Artisan"](https://leanpub.com/laravel) which covers advanced topics like dependency injection, interfaces, service providers, SOLID design and much more. Future chapters will be free of charge once you buy the book. - -*Source: [https://leanpub.com/laravel](https://leanpub.com/laravel)* - -### Laravel Weekly Survey Results - -A lot of you people filled in the survey we held over the last two weeks (244 to be precise). Thank you so much to answer in such large numbers! It's time to post the results. - -Would you be interested in a Newsletter? -Yes: 215 (88%) -No: 29 (12%) - -How regurarly do you read Laravel Weekly? -Every week: 195 (80%) -Every 2 weeks: 31 (13%) -Every month: 10 (4%) -Other (3%) - -On a scale of 1-5,how would you rate the content quality for Laravel Weekly? -5: 49 (20%) -4: 147 (60%) -3: 46 (19%) -2: 2 (1%) - -What do you consider more important for Laravel Weekly? -Amount of news items: 13 (5%) -Amount of resources: 79 (32%) -Content Quality: 144 (59%) -More interviews: 8 (3%) - -Most notable other requests: - -- More content -- More tutorials -- Quick code tips - -A lot of you were very enthusiast about what we're doing and we can't thank you enough for all the positive reactions. We got a lot of feedback from you and believe me that we'll be working hard to try and provide as much things as possible that you've requested. Starting with that newsletter of course which 88% of you so desperately want! - -### Win Stuff! - -The good folks behind [Snappy](http://www.besnappy.com/) are giving away 3 tickets to Laracon EU and 5 copies of Taylor's new book. You can enter [here](http://www.besnappy.com/laraconeu). - -*Source: [http://www.besnappy.com/laraconeu](http://www.besnappy.com/laraconeu)* - -### Win Even More Stuff! - -And if that's not enough, [Sanisoft](http://www.sanisoft.com/) is also raffling tickets for Laracon EU 2013. No excuses people, everyone is getting in! - -*Source: [http://laracon.eu/2013/raffle.html](http://laracon.eu/2013/raffle.html)* - -### EllisLab Seeking New Owner for CodeIgniter - -Something a lot of people have been anticipating has happened. [ElissLab](http://ellislab.com/), the company behind the CodeIgniter framework, is actively seeking a new maintainer for the framework. Because of their priorities they couldn't give CodeIgniter the amount of time it deserved. CodeIgniter had to compete with newer and more modern frameworks like Laravel over the past year(s), struggling to keep up. - -*Source: [http://ellislab.com/blog/entry/ellislab-seeking-new-owner-for-codeigniter](http://ellislab.com/blog/entry/ellislab-seeking-new-owner-for-codeigniter)* - -### Laravel 4: Diving Into The Source - -Jason Lewis wrote a great article about the Laravel core and how Laravel handles some core aspects. - -*Source: [http://jasonlewis.me/article/laravel-4-diving-into-the-source](http://jasonlewis.me/article/laravel-4-diving-into-the-source)* - -### New Wardrobe CMS features - -[Wardrobe](http://wardrobecms.com/) posted an overview of the recent new features which were added to the CMS. - -*Source: [http://wardrobecms.com/post/new-features-galore](http://wardrobecms.com/post/new-features-galore)* - -## Resources - -### Articles - -[How to Install Laravel 4 on a CentOS 6 VPS](https://www.digitalocean.com/community/articles/how-to-install-laravel-4-on-a-centos-6-vps) by [DigitalOcean](https://www.digitalocean.com) -[Laravel Sentry 2 with multiple user types](https://gist.github.com/leabdalla/5999421) by [Leandro Abdalla](https://gist.github.com/leabdalla) -[Why Laravel’s Seeds and Migrations Are Damn Powerful Tools](http://antjanus.com/blog/web-development-tutorials/back-end-development/why-laravels-seeds-and-migration-are-a-damn-powerful-tool/) by [Antonin Januska](http://antjanus.com/) -[Production-Ready Beanstalkd with Laravel 4 Queues](http://fideloper.com/ubuntu-beanstalkd-and-laravel4) by [Chris Fidao](http://fideloper.com/) -[Laravel 4: Sending Emails](http://www.masnun.com/2013/07/13/laravel-4-sending-emails.html) by [Abu Ashraf Masnun](http://www.masnun.com/) -[Simple and easy Laravel login authentication](http://scotch.io/bar-talk/x/simple-and-easy-laravel-authentication) by [Chris Sevilleja](http://www.sevilayha.com/) -[Creating a Laravel App on AppFog](http://bwsewell.com/2013/07/11/creating_a_laravel_app_on_appfog.html) by [Brian Sewell](http://bwsewell.com/) -[Image manipulation in Laravel 4 with Imagine](http://creolab.hr/2013/07/image-manipulation-in-laravel-4-with-imagine/) by [Boris Strahija](http://creolab.hr/) - -### Packages - -[Arcadia CMS](https://github.com/ludo237/Arcadia-CMS) by [Claudio Ludovico](https://github.com/ludo237) -[wkhtml2pdf](https://github.com/NitMedia/wkhtml2pdf) by [NitMedia](https://github.com/NitMedia) -[Presenter](https://github.com/robclancy/presenter) by [Robert Clancy](https://github.com/robclancy) -[Camelot-Auth](https://github.com/taftse/camelot-auth/) by [Timothy](https://github.com/taftse) - -### Other Links - -[Building a Decent API](http://philsturgeon.co.uk/blog/2013/07/building-a-decent-api) by [Phil Sturgeon](http://philsturgeon.co.uk/) - -## Events - -18/07 - Meeting - Austin, TX - [Welcome to Laravel Austin!](http://www.meetup.com/Laravel-Austin/) -18/07 - Meeting - Washington, DC - [Meeting up for the first time](http://www.meetup.com/Capital-Laravel-Group/events/127827542/) -25/07 - Meeting - Vienna - [Laravel Frameworkers Vienna](http://www.meetup.com/Laravel-Frameworkers-Vienna/) -08/08 - Meeting - Fishers, IN - [Hang Out With Other PHP, Laravel, & Mobile App Devs](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/128471462/) -17/08 - Talk - Boston, MA - [Introduction to Laravel](http://www.northeastphp.org/talks/view/10/Introduction-to-Laravel) -30/08 - 31/08 - Conference - Amsterdam - [Laracon EU 2013](http://laracon.eu/2013/) \ No newline at end of file diff --git a/issues/laravel-weekly-18.md b/issues/laravel-weekly-18.md deleted file mode 100644 index 76acfa2..0000000 --- a/issues/laravel-weekly-18.md +++ /dev/null @@ -1,74 +0,0 @@ -# Laravel Weekly #18 - -We're back with another Laravel Weekly! Sorry for skipping last week. I got a little busy and didn't finish last issue in time. But no worries, this week you can enjoy two weeks of articles, news and other resources! - -Thanks for reading and see you all next week! - -## News - -### Laracon EU Schedule - -The Laracon EU schedule is now online. The first day we'll get started with 4 talks with [Fabien Potencier](https://twitter.com/fabpot) concluding the day. Day two will start with 2 talks, free lunch around noon and 4 more talks in the afternoon with a closing talk by [Taylor Otwell](https://twitter.com/taylorotwell). Talks will last 45 minutes give or take. - -*Source: [http://laracon.eu/2013/](http://laracon.eu/2013/)* - -### Code Bright Website - -[Dayle Rees](https://twitter.com/daylerees) has released [the public website](http://codebright.daylerees.com/) for his book Code Bright. While the website offers free content please do [support Dayle by buying his book](https://leanpub.com/codebright). - -*Source: [http://codebright.daylerees.com/](http://codebright.daylerees.com/)* - -### The History of Laravel - -[Maksim Surguy](http://maxoffsky.com/) wrote up a great blog post detailing the history of the Laravel PHP framework. - -*Source: [http://maxoffsky.com/code-blog/history-of-laravel-php-framework-eloquence-emerging/](http://maxoffsky.com/code-blog/history-of-laravel-php-framework-eloquence-emerging/)* - -### The MVC Mindset - -Tutsplus recently released a new course about writing applications in an MVC way. You'll have to register to get the full content but you can be sure to get some quality courses and ebooks when you do. - -*Source: [https://tutsplus.com/lesson/be-careful-with-models/](https://tutsplus.com/lesson/be-careful-with-models/)* - -## Quick Tip - -[Jonathan Barronville](https://twitter.com/jonathanmarvens) gaves two great tips a few weeks ago on [how to use named routes with RESTful controllers](https://gist.github.com/jonathanmarvens/6016092) and [handling page titles](https://gist.github.com/jonathanmarvens/6017139). - -## Resources - -### Articles - -[Multi-TLD Routing in Laravel](http://ryantablada.com/post/multi-tld-routing-in-laravel) by [Ryan Tablada](https://twitter.com/RyanTablada) -[Using Schema Builder with CLI Migrations](http://thoughts.silentworks.co.uk/using-schema-builder-with-cli-migrations/) by [Andrew Smith](https://twitter.com/silentworks) -[Laravel 4 - Easily Extended](http://laravel.io/topic/39/laravel-4-easily-extended) by [Robert Clancy](https://twitter.com/robboclancy) -[Getting started with Mockery](http://culttt.com/2013/07/22/getting-started-with-mockery) by [Philip Brown](https://twitter.com/philipbrown) -[Beware the Route to Evil](http://philsturgeon.co.uk/blog/2013/07/beware-the-route-to-evil) by [Phil Sturgeon](http://philsturgeon.co.uk/) -[Organizing Routes in Laravel 4](http://ryantablada.com/post/organizing-routes-in-laravel-4) by [Ryan Tablada](https://twitter.com/RyanTablada) -[CodeShip and Laravel 4](http://blog.aculios.com/post/55982701268/codeship-and-laravel-4) by [Aculios Software Inc](https://aculios.com/) -[Custom Pagination Views in Laravel 4](http://benjaminkohl.com/post/custom-pagination-views-in-laravel-4) by [Benjamin Kohl](http://benjaminkohl.com/) -[The Wonder of The Config Folder](http://ryantablada.com/post/the-wonder-of-the-config-folder) by [Ryan Tablada](https://twitter.com/RyanTablada) -[Reusable Routes](http://ryantablada.com/post/routing-mastery) by [Ryan Tablada](https://twitter.com/RyanTablada) -[Creating Laravel 4 Validation Services](http://culttt.com/2013/07/29/creating-laravel-4-validation-services) by [Philip Brown](https://twitter.com/philipbrown) - -### Packages - -[Prologue Alerts - Global site messages manager](https://github.com/Prologue/Alerts) by [Dries Vints](https://twitter.com/driesvints) -[Cabinet - Laravel 4 File Upload Package](https://github.com/andrew13/cabinet) by [Andrew Elkins](https://github.com/andrew13) - -### Screencasts - -[Migrating Laravel 3 To Laravel 4](http://www.youtube.com/watch?v=JUK4T2To5l0&feature=youtu.be) by [Brandon Boswell](https://twitter.com/brandonkboswell) - -### Other Links - -[Mastering the SPL Library](http://www.phparch.com/books/mastering-the-spl-library/) by [Joshua Thijssen](http://www.adayinthelifeof.nl/) -[Packalyst](http://packalyst.com/) by [Jon' T.](https://twitter.com/thujohn) -[VerbalExpressionsPhp](https://github.com/markwilson/VerbalExpressionsPhp) by [Mark Wilson](https://github.com/markwilson) - -## Events - -05/08 - Meeting - New York, NY - [Community meetup - Creating Laravel PHP components with Composer](http://www.meetup.com/New-York-Laravel/events/128499242/) -07/08 - Meeting - Dallas, TX - [Laravel Dallas/Fort Worth Meetup](http://www.meetup.com/laravel-dallas-fort-worth/) -08/08 - Meeting - Fishers, IN - [Hang Out With Other PHP, Laravel, & Mobile App Devs](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/128471462/) -17/08 - Talk - Boston, MA - [Introduction to Laravel](http://www.northeastphp.org/talks/view/10/Introduction-to-Laravel) -30/08 - 31/08 - Conference - Amsterdam - [Laracon EU 2013](http://laracon.eu/2013/) \ No newline at end of file diff --git a/issues/laravel-weekly-19.md b/issues/laravel-weekly-19.md deleted file mode 100644 index 0754931..0000000 --- a/issues/laravel-weekly-19.md +++ /dev/null @@ -1,70 +0,0 @@ -# Laravel Weekly #19 - -Hey guys and girls, welcome to Laravel Weekly #19. It's a small one because last week's issue was released pretty late. We have some more Laracon EU news and another raffle. Definitely also check into [Chris](http://fideloper.com/)' new blog post series, I'm pretty excited about that. Chris has written some great posts in the past and I expect these new blog posts to build further on top of that. - -See ya next week! - -## News - -### New Laravel.io Podcast - -In case you missed it, there's a new Laravel.io Podcast episode. In this episode [Shawn McCool](https://twitter.com/ShawnMcCool), [Taylor Otwell](https://twitter.com/taylorotwell) and [Jeffrey Way](https://twitter.com/jeffrey_way) discuss Laracon, architecture, testing and more. - -*Source: [http://laravel.io/topic/41/podcast-2-laracon-architecture-testing-and-more](http://laravel.io/topic/41/podcast-2-laracon-architecture-testing-and-more)* - -### Laracon EU Early Video Access - -You can now purchase special tickets to get early access to the conference's videos when they're done. So if you can't attend the conference this is a nice way to get in early on all the talks which were given at Laracon EU. - -*Source: [http://laracon.eu/2013/](http://laracon.eu/2013/)* - -### Laracon EU Raffle - -Another raffle! Hey [Big Name](http://heybigname.com/) is giving away a ticket to Laracon EU. - -*Source: [http://laracon.eu/2013/raffle.html](http://laracon.eu/2013/raffle.html)* - -### Wanted: Coding Problems! - -[Chris Fidao](http://fideloper.com/) is currently looking for common coding problems you're having in Laravel to write up a new blog post series. Since Chris definitely isn't just any Laravel developer, you can expect some high quality posts from him. - -*Source: [http://fideloper.com/laravel-cookbook](http://fideloper.com/laravel-cookbook)* - -## Quick Tip - -> Pro tip: Check out the source code of [@WardrobeCMS](https://twitter.com/WardrobeCMS) to learn more about the concepts in [@taylorotwell](https://twitter.com/taylorotwell)'s book. cc [@laravelphp](https://twitter.com/laravelphp) - -A great tip by [Sid](https://twitter.com/koomai). Since Taylor helped a bit at building [Wardrobe](http://wardrobecms.com/), the CMS by [Eric Barnes](https://twitter.com/ericlbarnes), you can check out [the source code](https://github.com/ericbarnes/wardrobe) for applied concepts from Taylor's recently released book ["Laravel: From Apprentice to Artisan"](https://leanpub.com/laravel). - -## Resources - -### Articles - -[New Laravel 4 Generator: Pivot](http://jeffrey-way.com/blog/2013/08/02/new-laravel-4-generator-pivot) by [Jeffrey Way](https://twitter.com/jeffrey_way) -[Laravel Package Database Flexibility - Eloquent Models](http://ryantablada.com/post/laravel-package-database-flexibility-eloquent-models) by [Ryan Tablada](https://twitter.com/RyanTablada) - -### Packages - -[Eloquent Rankable](https://github.com/rtablada/eloquentRankable) by [Ryan Tablada](https://twitter.com/RyanTablada) -[Prologue Support](https://github.com/Prologue/Support) by [Dries Vints](https://twitter.com/driesvints) -[Polyglot - Localization helper for Laravel](https://github.com/Anahkiasen/polyglot) by [Maxime Fabre](https://twitter.com/anahkiasen) -[Multiple Email Providers package for Laravel 4](https://github.com/abishekrsrikaanth/mailto) by [Abishek R Srikaanth](https://github.com/abishekrsrikaanth) -[Active Helper](https://github.com/digithis/activehelper) by [digithis](https://github.com/digithis) -[AnnotateCms Debugger](https://github.com/annotatecms/debugger) by [Michal Vyšinský](https://github.com/annotatecms) -[AnnotateCms Latte](https://github.com/annotatecms/latte) by [Michal Vyšinský](https://github.com/annotatecms) - -### Screencasts - -[Platform 2 Assets](http://quick.as/bonfgg) by [Cartalyst](http://www.cartalyst.com/) -[Livereload on Platform 2](http://quick.as/eadtgx) by [Cartalyst](http://www.cartalyst.com/) - -### Other Links - -[phpDocumentor 2](https://github.com/phpDocumentor/phpDocumentor2/releases/tag/v2.0.0) - -## Events - -07/08 - Meeting - Dallas, TX - [Laravel Dallas/Fort Worth Meetup](http://www.meetup.com/laravel-dallas-fort-worth/) -08/08 - Meeting - Fishers, IN - [Hang Out With Other PHP, Laravel, & Mobile App Devs](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/128471462/) -17/08 - Talk - Boston, MA - [Introduction to Laravel](http://www.northeastphp.org/talks/view/10/Introduction-to-Laravel) -30/08 - 31/08 - Conference - Amsterdam - [Laracon EU 2013](http://laracon.eu/2013/) \ No newline at end of file diff --git a/issues/laravel-weekly-20.md b/issues/laravel-weekly-20.md deleted file mode 100644 index d8f0b80..0000000 --- a/issues/laravel-weekly-20.md +++ /dev/null @@ -1,75 +0,0 @@ -# Laravel Weekly #20 - -This week we have some exciting news for Laracon EU this week. Jordi Boggiano, one of the lead developers of Composer is coming over. I'm excited to hear from him about Composer and perhaps what the future holds for tool. - -We're also getting close to the Laravel Weekly newsletter. If all goes well, the first issue should arrive in your inboxes next week. In the meanwhile you can [sign-up here](http://eepurl.com/DGabL). - -I hope you enjoy this week's resources! - -## News - -### Seldaek is coming to Laracon EU - -[Laracon EU](http://laracon.eu/2013/) has announced that Rafael Dohmns can't make it. We're going to miss his presentation and wish him all the best! Laracon EU immediately made work of finding a proper replacement and they sure did. -Jordi Boggiano, also known as [@seldaek](https://twitter.com/seldaek) on twitter and one of the lead developers of [Composer](http://getcomposer.org/) is coming to Laracon EU to give an in-depth talk about Composer. - -### Laravel Weekly Newsletter Update - -You can now start subscribing for the Laravel Weekly newsletter. We're aiming at sending out the first newsletter next week. The first newsletter will be a bit of a trial to see what you all think of the design and content format. You can post your opinions here on [laravel.io](http://laravel.io) and we'll try to improve the newsletter from there. - -You can sign-up for the newsletter [here](http://eepurl.com/DGabL). - -### The Laravel Foundations Project - -We recently announced *[The Laravel Foundations Project](http://laravel.io/topic/43/the-laravel-foundations-project)*, a project that seeks experienced developers to write articles about the common questions that beginner Laravel Developers struggle with. - -### Laracasts - -It seems that [Jeffrey Way](https://twitter.com/jeffrey_way) is working on a side project for the new [laracasts.com](http://laracasts.com) website. While it's still very mysterious and all, it's probably safe to say that we're going to get a whole new series of high quality Laravel screencasts very soon. You can already check out a preview screencast [here](http://social-sharing.s3.amazonaws.com/11-Refactoring-For-PSR-0.mp4). - -Follow the twitter account [@laracasts](https://twitter.com/laracasts) and subscribe on [laracasts.com](http://laracasts.com) to stay up to date when they're launching their first screencasts. - -### Ryan Tablada - -If you want a good source for Laravel tutorials then [Ryan's blog](http://ryantablada.com/) is the place to be. He's been writing tutorials and articles like crazy resulting in a massive list or resources for you to spend some learning time on. - -## Quick Tip - -> Composer tip: even though they don't list it, composer dump may be used instead of composer dump-autoload. - -[By Jeffrey Way](https://twitter.com/jeffrey_way/status/367079737467736064) - -## Resources - -### Articles - -[Extending Eloquent in Laravel 4](http://culttt.com/2013/08/05/extending-eloquent-in-laravel-4) by [Philip Brown](https://twitter.com/philipbrown) -[Building out RESTful Controller methods in Laravel 4](http://culttt.com/2013/08/12/building-out-restful-controller-methods-in-laravel-4/) by [Philip Brown](https://twitter.com/philipbrown) -[Creating an Installer Script For Your Package](http://ryantablada.com/post/creating-an-installer-script) by [Ryan Tablada](http://ryantablada.com/) -[The Repository Pattern in Action](http://ryantablada.com/post/the-repository-pattern-in-action) by [Ryan Tablada](http://ryantablada.com/) -[Flexible Views For Laravel Packages](http://ryantablada.com/post/flexible-views-for-laravel-packages) by [Ryan Tablada](http://ryantablada.com/) -[REST APIs in Your Packages](http://ryantablada.com/post/rest-apis-in-your-packages) by [Ryan Tablada](http://ryantablada.com/) -[Eloquent Expertise Preview](http://ryantablada.com/post/eloquent-expertise-preview) by [Ryan Tablada](http://ryantablada.com/) -[Per Your Request - Starting Eloquent](http://ryantablada.com/post/per-your-request-starting-eloquent) by [Ryan Tablada](http://ryantablada.com/) -[An alternative application workflow in Laravel 4: part 2](http://kirkbushell.me/laravel-4-an-alternative-application-workflow-part-2/) by [Kirk Bushell](http://kirkbushell.me/) - -### Packages - -[Laravel Auto Presenter](https://github.com/ShawnMcCool/laravel-auto-presenter) by [Shawn McCool](https://twitter.com/ShawnMcCool) -[Revisionable v1.1.x](https://github.com/VentureCraft/revisionable) by [Chris Duell](https://twitter.com/duellsy) -[Feature switches in Laravel 4](https://github.com/ronaldvaneede/laravel-feature-switches) by [Ronald van Eede](https://github.com/ronaldvaneede) - -### Screencasts - -[Faster Laravel Tests With...](http://jeffrey-way.com/blog/2013/08/10/faster-testing-with-my-package/) by [Jeffrey Way](https://twitter.com/jeffrey_way) -[Platform 2 Pages](http://quick.as/eadig8) by [Cartalyst](http://cartalyst.com) - -### Other Links - -[New Sublime Packages Website](https://sublime.wbond.net/) -[Laravel cheat sheet](http://cheats.jesse-obrien.ca/) - -## Events - -17/08 - Talk - Boston, MA - [Introduction to Laravel](http://www.northeastphp.org/talks/view/10/Introduction-to-Laravel) -30/08 - 31/08 - Conference - Amsterdam - [Laracon EU 2013](http://laracon.eu/2013/) \ No newline at end of file diff --git a/issues/laravel-weekly-21.md b/issues/laravel-weekly-21.md deleted file mode 100644 index 058a981..0000000 --- a/issues/laravel-weekly-21.md +++ /dev/null @@ -1,89 +0,0 @@ -# Laravel Weekly #21 - -It's finally here! The first Laravel Weekly newsletter. From now on you'll have weekly Laravel news delivered straight to your inbox! -I'm very happy with how much of you already subscribed to this newsletter. No less then 195 of you already joined for weekly Laravel news. - -Remember that everyone can contribute to this newsletter. So if you have something you'd like to share, let us know! Send all your links to your new packages, articles, tutorials, screencasts to [hello@laravelweekly.com](mailto:hello@laravelweekly.com) and we'll feature it in the next issue. - -If you spot something wrong with the newsletter then please let us know! You can mail all bug reports to [hello@laravelweekly.com](mailto:hello@laravelweekly.com). - -If you haven't subscribed yet then you can do so [here](http://eepurl.com/DGabL). - -Thanks for reading and see you next week! - -## News - -### Laracon EU is next week! - -It's almost hard to believe but [Laracon EU](http://laracon.eu/2013/) is just a week away from now! In one week we'll be joining over 200 Laravel developers in Amsterdam to listen to some great talks from some of the most talented people in our industry. Exciting times! - -There's still time to get your tickets if you haven't! If you're still having a hard time on deciding for a ticket then maybe this will help. [Cartalyst](http://www.cartalyst.com/) just announced that the final 30 tickets for Laracon EU will also get 60% of [a quarterly subscription](http://www.cartalyst.com/pricing) for Cartalyst. That's some premium components you're getting for your Laravel projects for a very low amount of money. - -And if that's not enough, Laravel itself recently announced that everyone at Laracon EU will get a free copy of [Taylor's recent book](https://twitter.com/laravelphp/status/367498147884318720), "From Apprentice to Artisan". - -### Podcast #3 - Packages! - -For those of you that missed it. Last week [laravel.io](http://laravel.io/) published its [third Laravel podcast](http://laravel.io/topic/44/podcast-3-packages) . In this episode, Laravel author [Taylor Otwell](https://twitter.com/taylorotwell) discusses packages with his teammate / backbone-ninja [Eric Barnes](https://twitter.com/ericlbarnes) and Laravel community contributor, [Ryan Tablada](https://twitter.com/RyanTablada). - -### Laravel 4 Authentication - -[Christopher Pitt](https://twitter.com/followchrisp) wrote a very in-depth tutorial about [authentication in Laravel 4](https://medium.com/on-coding/e8d93c9ce0e2). In his tutorial he'll help you set up an application which handles user authentication and everything that goes along with it like password resetting and error handling. A great tutorial for beginning Laravel 4 developers. - -### Implementing Laravel - -[Chris Fidao](https://twitter.com/fideloper), a prominent Laravel community member, is currently working on [a new Laravel book](https://leanpub.com/implementinglaravel) about how to implement Laravel in a real world application. I'm very much looking forward to this one! - -### Cartalyst launches team accounts - -[Cartalyst](http://www.cartalyst.com/), the company that offers premium Laravel 4 packages and applications, now also offers [team accounts](http://blog.cartalyst.com/post/58245326721/team-accounts-pricing) . - -## Quick Tip - -Did you know you could use the "implode" method to paste values of a Collection class instance together? Or that you could use the "take" method to grab the first or last x amount of items? Check out some examples [here](http://paste.laravel.com/Li1). - -## Resources - -### Articles - -[Laravel 4 and Facebook PHP SDK](http://ifonlyiknewthat.com/facebook/laravel-4-and-facebook-php-sdk/) -[Permissions, Virtual Hosts, and Laravel](http://jasonlewis.me/article/permissions-virtual-hosts-and-laravel) -[Platform 2 Extensions - Quick Start guide](https://gist.github.com/drsii/6295234) -[Cool Stuff I Learned About Laravel 4](http://antjanus.com/blog/web-development-tutorials/cool-stuff-i-learned-about-laravel-4/) -[Snippetize All The Things](http://laracasts.com/blog/snippetize-all-the-things) -[Alternative Environment Detection for Laravel 4](http://crynobone.com/posts/5/alternative-environment-detection-for-laravel-4) -[Integrating Facebook Login into Laravel application](http://maxoffsky.com/code-blog/integrating-facebook-login-into-laravel-application/) -[Eloquent Connections - Making the World Go Round](http://ryantablada.com/post/eloquent-connections-making-the-world-go-round) -[Ember JS and Laravel](http://ryantablada.com/post/ember-js-and-laravel) -[What and Why - Query Builders and Eloquent](http://ryantablada.com/post/what-and-why-query-builders-and-eloquent) -[Laravel 4 in Shared Hosting](http://crynobone.com/posts/3/laravel-4-in-shared-hosting) - -### Packages - -[Stapler - Easy file attachment management using Eloquent in Laravel 4](https://github.com/CodeSleeve/stapler) -[Aidkit - The "Admin Interface Development Kit" for Laravel](http://codebryo.github.io/aidkit/) -[Asset Pipeline](https://github.com/CodeSleeve/asset-pipeline) -[Laravel Berkshelf Bootstrap](https://github.com/In-Touch/laravel-berkshelf) - -### Screencasts - -[Laravel Tutorial 2 - Controller, View and Pass Data](http://www.youtube.com/watch?v=U_0gNBN7Q7I) -[Building Laracasts Teaser](http://laracasts.com/blog/building-laracasts-teaser-1) -[Migrations and Icon fonts](http://social-sharing.s3.amazonaws.com/20-Storing-Thumbnail-References-Within-The-Database.mp4) -[Helper Functions](http://social-sharing.s3.amazonaws.com/14-Helper-Functions.mp4) - -### Talks - -[Intro to Laravel 4](http://www.slideshare.net/kareerme/laravel-sdphp) - -### Other Links - -[Vim Adventures](http://vim-adventures.com/) - -### Events - -30/08 - 31/08 - Conference - Amsterdam - [Laracon EU 2013](http://laracon.eu) -12/09 - Meeting - Fishers, IN - [Discuss Modern Web & Mobile Development, & Laravel 4's Progress](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/135898802/) - -## We want you...! - -...to send us your articles, packages, meetups, screencasts, whatever you like to be featured in the next Laravel Weekly! Send all your details to [hello@laravelweekly.com](mailto:hello@laravelweekly.com) \ No newline at end of file diff --git a/issues/laravel-weekly-22.md b/issues/laravel-weekly-22.md deleted file mode 100644 index b86b1cf..0000000 --- a/issues/laravel-weekly-22.md +++ /dev/null @@ -1,72 +0,0 @@ -Whohoo! This will be the last Laravel Weekly before Laracon EU kicks off this friday. We're very excited to meeting some of you in person. If you can't make it to Laracon EU then have no fear! Every talk will be taped and put online sometime after the event. You can even [purchase early video access](http://laracon.eu/2013/) so you get to view the videos earlier! - -We decided to put the E-mail template for this newsletter online at Github so you folks can contribute or suggest changes for it. [Feel free to contribute here.](https://github.com/LaravelIO/LaravelWeekly) The first contribution is already merged in. Thanks to [Mark Powell](https://github.com/pidgpowell) for making the newsletter responsive! - -Thanks for reading and see you all next week after Laracon EU! - -## News - -### Laracon EU starts tomorrow! - -Laracon EU kicks off this friday. It's going to be 2 great days full of Laravel awesomeness! - -If you're staying in Amsterdam for the conference then we suggest that you have a look at [the spotted by locals website](http://www.spottedbylocals.com/amsterdam/). Spotted by locals offers a great guide so you can experience the city like if you were living here! - -If you're coming over for the conference make sure you get here on time before the talks begin. There's nothing worse then disturbing a speaker during his talk by sneaking in! You can register starting from 1PM up till 2PM when the first talk begins on thursday. - -The event pages at [lanyrd.com](http://lanyrd.com/2013/laraconeu/) and [joind.in](https://joind.in/event/view/1480) got updated for the event so please subscribe to them if you're coming to Laracon EU. Also, please rate the talks for the speakers during or after the conference on [joind.in](https://joind.in/event/view/1480). Giving speaker feedback is super important as it'll help them improve their skills at speaking at conferences. - -If you're taking pictures at Laracon EU we'd love to know! Send all your Laracon EU pictures to [@LaravelWeekly](https://twitter.com/LaravelWeekly) on twitter or email us at hello [at] laravelweekly [dot] com and we'll have some sort of a photo album up after the event. - -We're very excited to meet a lot of you in person. Let's make this a wonderful conference! - -### Podcast #4 - Laracon, Lean and War Stories - -Last week the latest [laravel.io](http://laravel.io/) podcast was published. In [podcast #4](http://laravel.io/topic/46/podcast-4-laracon-lean-and-war-stories) [Shawn McCool](https://twitter.com/ShawnMcCool), [Taylor Otwell](https://twitter.com/taylorotwell) and [Matthew Machuga](https://twitter.com/machuga) discuss the upcoming Laravel conference in Amsterdam, code-base complexity and tell stories from their development past. - -### Practical Tutorial Series By Dayle Rees - -[Dayle Rees](https://twitter.com/daylerees), one of the Laravel core team members, recently started a new practical tutorial series on various development subjects. He already posted two series. One about [Dependency Injection](https://github.com/daylerees/dependency-injection-example) and another about [Test-Driven Development (TDD)](https://github.com/daylerees/test-driven-development-example). - -### 50% Off Laravel Testing Decoded - -Because of Laracon EU, [Jeffrey](https://twitter.com/jeffrey_way) is giving a 50% discount on his book ["Laravel Testing Decoded"](https://leanpub.com/laravel-testing-decoded) for this week only. You can use the coupon code "yay-laracon" to get the discount. - -### News From PHP-FIG - -[Phil Sturgeon recently announced](https://twitter.com/philsturgeon/status/372425522082750464) that the PHP-FIG has been making quite some progress on the next PSR standards. The [PSR-4 Autoloading standard](https://github.com/php-fig/fig-standards/tree/master/proposed/psr-4-autoloader) has been moved to review. The PSR-4 standard will allow composer packages to have a much cleaner directory structure and is a welcome addition to the PSR-0 standard. The [PSR-5 PHPDoc standard](https://github.com/phpDocumentor/fig-standards/tree/master/proposed) has passed it entrance vote and is currently still actively being worked on. I'm personally very exited about this as we'll finally be getting some clear guidelines on how to structure our API documentation. - -### WithLaravel Job Board - -[SANIsoft](http://www.sanisoft.com/), one of the sponsors for Laracon EU, recently released a job board called [WithLaravel](http://withlaravel.com/) specifically targeting Laravel developers. You can post jobs for which you're looking for developers or you could list yourself as a developer, available for work. - -## Resources - -### Articles - -[Creating forms in Laravel 4](http://culttt.com/2013/08/19/creating-forms-in-laravel-4/) -[Putting your Laravel controllers on a diet](http://adamwathan.me/post/putting-your-controllers-on-a-diet) -[Pagination with Laravel 4 and Angular JS](http://kirkbushell.me/pagination-with-laravel-4-and-angular-js/) - -### Application & Packages - -[OrderMVC - Laravel Application](https://github.com/OrderMVC/Laravel-App) -[Croissant - a simple, minimal, lightweight blogging app](https://github.com/jesseterry/croissant) -[HipSupport](https://github.com/BradEstey/HipSupport) -[The power of 'Respect Validation' on Laravel 4 Validation](https://github.com/KennedyTedesco/Validation) -[Laravel HTML Minify](https://github.com/fitztrev/laravel-html-minify) - -### Screencasts - -[Using Aspectmock to mock Eloquent methods](http://quick.as/6rghggk) - -### Other Links - -[Sixpack - a language-agnostic ab testing framework](http://sixpack.seatgeek.com/) -[VIM Adventures](http://vim-adventures.com/) - -## Events - -30/08 - 31/08 - Conference - Amsterdam - [Laracon EU 2013](http://laracon.eu) -05/09 - Meeting - Southlake, TX - [Laravel DFW Monthly Meetup](http://www.meetup.com/laravel-dallas-fort-worth/events/133727892/) -12/09 - Meeting - Fishers, IN - [Discuss Modern Web & Mobile Development, & Laravel 4's Progress](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/135898802/) \ No newline at end of file diff --git a/issues/laravel-weekly-23.md b/issues/laravel-weekly-23.md deleted file mode 100644 index 88e4cd6..0000000 --- a/issues/laravel-weekly-23.md +++ /dev/null @@ -1,100 +0,0 @@ -# Laravel Weekly #23 - -We're back after taking a week off after Laracon EU. It was so much fun to finally meet so many people in real life. Thanks to everyone who came out! I can't wait until next year. - -A lot has happened in the past 2 weeks after Laracon EU. Chris' book, Implementing Laravel came out today, Laracasts is moving closer to its release and people have again been posting awesome articles and other resources. - -I also can't believe this newsletter is already at 406 subscribers. That's insane! Thank you all so much. - -I hope you enjoy this week's overview. See you next week! - -## News - -### Laracon EU Recap - -It's been 2 weeks now since Laracon EU and we had a blast! Thank you so much to all the speakers, sponsors, attendees, people of Bimhuis, all the volunteers and everyone else I'm forgetting for making it such a great event. Especially thanks to Jeroen and Shawn for all the hard work they put into this. Everything went smoothly. The speakers were great, the food was delicious and the view from the Bimhuis was amazing. We hope you had a great time because we can't wait to welcome you all back next year! - -People who subscribed for early video access should have received the links to the raw videos and slides by now. If you haven't, make sure to send an email to [contact@laracon.eu](mailto:contact@laracon.eu) so we can sort things out. Everyone will get access to the produced videos once they're finished. - -In the meantime the Laravel community has been rather busy taking pictures, making blog posts and commenting on Twitter about Laracon EU. We decided give you an overview. - -**Articles** - -[Laracon EU (I)](http://blog.marcomonteiro.net/post/laracon-eu-1) -[Laracon EU (II)](http://blog.marcomonteiro.net/post/laracon-eu-(2)) -[Laracon EU (III)](http://blog.marcomonteiro.net/post/laracon-eu-3) -[Laracon EU (IV)](http://blog.marcomonteiro.net/post/laracon-eu-(iv)) -[Laracon EU (V)](http://blog.marcomonteiro.net/post/laracon-(v)) -[Laracon Observations](http://blog.fortrabbit.com/laracon-observations/) - -**Photos** - -[Dave Shoreman](http://www.flickr.com/photos/101291236@N07/sets/72157635387934720/) -[Jordi Boggiano](http://www.flickr.com/photos/seldaek/sets/72157635332125877/) -[Raymond Idema](http://www.flickr.com/photos/101145465@N04/sets/72157635338163150/) -[Benedikt Niessen](http://www.flickr.com/photos/benediktniessen/sets/72157635330442674/) -[Stefan Neubig](http://www.flickr.com/photos/emotional-stuntman/sets/72157635322750005/) - -We also had lots of fun Saturday night on the #laravel channel on IRC. Here's a very active Laravel community member in disguise [trolling his fellow developers](http://d.pr/i/x68C) ;-) - -### Implementing Laravel Released - -[Chris](https://twitter.com/fideloper)' book, [Implementing Laravel has been released](https://leanpub.com/implementinglaravel). In his book, Chris will provide details on code organisation, using Laravel's IoC container and Service Providers and creating testable and maintainable code. - -### From Apprentice To Artisan: New Chapter - -Taylor Otwell recently added a new chapter to his book, [Laravel: From Apprentice To Artisan](https://leanpub.com/laravel). In this new chapter he goes over decoupling handlers. It's the first of several new chapters to come. - -### Laravel 4 ACL - -[Christopher Pitt](https://twitter.com/followchrisp), who posted an in-depth tutorial about [authentication in Laravel 4](https://medium.com/on-coding/e8d93c9ce0e2) a few weeks ago, has posted a follow-up tutorial about [managing user groups](https://medium.com/on-coding/a7f2fa1f9791). Again very in-depth, with lots of tips and tricks for various use-cases. - -### Laracasts Forum - -In preparation for the big launch, [Laracasts](http://laracasts.com/) has launched [a forum for its website](http://laracasts.com/forum/) where people can discuss the posted screencasts and other PHP and Laravel related topics. - -### Laravel Schema Designer - -This is pretty cool. [Thomas](https://twitter.com/Okyn01) made [a Laravel schema designer for Laravel 4](http://www.laravelsd.com/). You can basically boilerplate your entire database and export the migrations. Very handy! - -## Quick Tip - -Did you know that as of a couple of weeks ago you can use the Formbuilder class to pre-populate select fields with numeric ranges, years or months? [Take a closer look here at how it's done.](https://gist.github.com/driesvints/6543470#file-laravel-weekly-23-quick-tip-php) - -## Resources - -### Articles - -[Pivot Tables vs Pivot Models](http://ryantablada.com/post/pivot-tables-vs-pivot-models) -[Assertions on method calls using Mockery](http://lutro.priv.no/posts/assertions-on-method-calls-using-mockery) -[Optimizing for production with Laravel 4](http://lutro.priv.no/posts/optimizing-for-production-with-laravel-4) -[Testable, simple L4 code without repository patterns](http://lutro.priv.no/posts/testable-simple-l4-code-without-repository-patterns) -[Integrating Stripe into Laravel 4 application](http://maxoffsky.com/code-blog/integrating-stripe-into-laravel-4-application/) -[Simple Twitter Feed with Caching Using Laravel and Twitter API](http://www.mackhankins.com/blog/laravel/simple-twitter-feed-with-caching-using-laravel-and-twitter-api) -[How to get Laravel set up in a VM using PuPHPet](http://www.reddit.com/r/PHP/comments/1m7r74/how_to_get_laravel_set_up_in_a_vm_using_puphpet/) -[Is There Merit to Unit Testing Controllers](http://laracasts.com/forum/11-is-there-merit-to-unit-testing-controllers) -[Laravel Quick Tip: Global Route Constraints](http://kuzemchak.net/blog/entry/laravel-quick-tip-global-route-constraints) - -### Applications & Packages - -[skorry](https://github.com/flaviozantut/skorry) -[Jl4 Newsletter Application](https://github.com/kJamesy/Laravel4-Newsletter-Application) - -### Other Links - -[Behat for the Rest of Us](https://tutsplus.com/tutorial/behat-for-the-rest-of-us/) -[DesignPatternsPHP](https://github.com/domnikl/DesignPatternsPHP) - -## Events - -**September 12, 2013 - Fishers, IN** -[Discuss Modern Web & Mobile Development, & Laravel 4's Progress](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/135898802/) - -**October 1, 2013 - London, UK** -[First London Laravel Meetup](http://www.meetup.com/London-Laravel/events/139606362/) - -**October 3, 2013 - Groningen, Netherlands** -[October meetup: Laravel 4](http://www.meetup.com/GroningenPHP/events/139600382/) - -**November 9 or 10, 2013 - Los Angeles, CA** -[Introduction to Laravel PHP framework](http://www.socalcodecamp.com/socalcodecamp/session.aspx?sid=819cd36a-f492-483b-802d-6a770b4f1dcf) \ No newline at end of file diff --git a/issues/laravel-weekly-24.md b/issues/laravel-weekly-24.md deleted file mode 100644 index de3ce1b..0000000 --- a/issues/laravel-weekly-24.md +++ /dev/null @@ -1,72 +0,0 @@ -# Laravel Weekly #24 - -It's been a crazy week with lots of new articles for you to read and learn from. We hope you'll enjoy this week's content. - -In other news, the new laravel.io website is coming along nicely. Shawn has been working on it like crazy and already did a tremendous amount of work. We'll keep you posted with updates on the progress. In the meantime check out the post below to see how you can participate. - -Thanks for reading! - -## News - -### Laravel IO 2.0 - -Some of you might have noticed already but [we've started working hard](https://github.com/LaravelIO/laravel-io) on the new laravel.io website. [There's still a lot to be done](https://github.com/LaravelIO/laravel-io/issues/16) before it's finished and we could really use the community's input in [the open issues](https://github.com/LaravelIO/laravel-io/issues?milestone=1&state=open) which are left. [Come join the discussion](https://github.com/LaravelIO/laravel-io/issues/16) and tell us what you'd like to see in the new community portal. - -### Laravel IO Podcast #5 - -I forgot to include it in the last newsletter but the latest laravel.io podcast is out. [In episode #5](http://laravel.io/topic/49/podcast-5-with-matthew-machuga-and-chris-fidao) Shawn talks to Matthew Machuga and Chris Fidao. - -### Laravel 4 Deployment - -It's only been a little over a week but [Christopher Pitt](https://twitter.com/followchrisp) has already written a third extensive Laravel article on Medium. This time he talks about [deployment processes for Laravel 4](https://medium.com/on-coding/3bed5d0e645e). - -## Quick Tip - -Did you know that there are a few small hidden gems in the Illuminate Redirector class? [Take a closer look here](https://gist.github.com/driesvints/6681848). - -## Resources - -### Articles - -[Case Study: HellaClips Rebuild](http://paintedcloud.us/case-study-hellaclips-com-rebuild/) -[Making the paginator api-friendly in laravel 4](http://kirkbushell.me/making-the-paginator-api-friendly-in-laravel-4) -[Multiple DB Connections in Laravel](http://fideloper.com/laravel-multiple-database-connections) -[How to use Laravel 4 Filters](http://culttt.com/2013/09/16/use-laravel-4-filters) -[Registration and Authentication in Laravel 4](http://culttt.com/2013/09/09/registration-authentication-laravel-4/) -[Password reminders and reset in Laravel 4](http://culttt.com/2013/09/23/password-reminders-reset-laravel-4/) -[Utilizing Push Queues in Laravel 4](http://tindrlabs.com/post/utilizing-push-queues-in-laravel-4) -[Using Blade in Laravel 4](http://culttt.com/2013/09/02/using-blade-laravel-4) -[Laravel Routes](http://jream.com/blog/php/laravel-routes/) -[Laravel PDO Connection Options](http://fideloper.com/laravel-pdo-connection-options) -[Raw Queries in Laravel](http://fideloper.com/laravel-raw-queries) -[Quick Tip: Faker and Laravel Seed Generators](http://codebyjeff.com/blog/2013/09/quick-tip-faker-and-laravel-seed-generators) -[Linux, Nginx, MySQL, PHP-FPM (LNMP) Laravel development setup for Debian, Ubuntu, and derivatives](http://obviousrobot.com/2013/09/linux-nginx-mysql-php-fpm-lnmp-laravel-development-setup-for-debian-ubuntu-and-derivatives) -[Laravel in Practice – pulling user data from LinkedIn](http://maxoffsky.com/code-blog/laravel-in-practice-pulling-user-data-from-linkedin/) -[Securing Laravel Push Queues](http://blog.seanpinegar.com/2013/09/securing-laravel-push-queues/) - -### Applications & Packages - -[Fractal](https://github.com/Regulus343/Fractal) -[Laravel Debugbar](https://github.com/barryvdh/laravel-debugbar) - -### Other Links - -[Bernard](http://bernardphp.com/en/latest/index.html) - -## Events - -**October 1, 2013 - London, UK** -[First London Laravel Meetup](http://www.meetup.com/London-Laravel/events/139606362/) - -**October 3, 2013 - Groningen, Netherlands** -[October meetup: Laravel 4](http://www.meetup.com/GroningenPHP/events/139600382/) - -**October 10, 2013 - Fishers, IN** -[Build Systems, Unit Testing, Vagrant, Authentication, Service Providers/IoC, etc](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/141852692/) - -**November 9 or 10, 2013 - Los Angeles, CA** -[Introduction to Laravel PHP framework](http://www.socalcodecamp.com/socalcodecamp/session.aspx?sid=819cd36a-f492-483b-802d-6a770b4f1dcf) - -## We want you...! - -...to send us your articles, packages, meetups, screencasts, whatever you like to be featured in the next Laravel Weekly! Send all your details to [hello@laravelweekly.com](mailto:hello@laravelweekly.com) \ No newline at end of file diff --git a/issues/laravel-weekly-25.md b/issues/laravel-weekly-25.md deleted file mode 100644 index ad30d2e..0000000 --- a/issues/laravel-weekly-25.md +++ /dev/null @@ -1,78 +0,0 @@ -# Laravel Weekly #25 - -[Laracasts](https://laracasts.com) has finally been released. The community has been begging for some sort of Laravel knowledge hub for a few months now that L4 is out. Laracasts perfectly answers this demand as it provides you with educational screencasts on various subjects ranging from architecture, repositories, testing, deployment and so on. If you want Jeffrey to add more screencasts on a subject you'd like to see covered, [try requesting it in the forums](http://laracasts.com/forum/). - -Laravel 4.1 is getting closer as well with more features being added to the Artisan command since last week. Can't wait for it to get released so we can start using the new remote component and the live debugger. - -Anyway, thanks for reading and see you all next week! - -## News - -### Native Artisan Support in PhpStorm - -JetBrains recently released an update for PhpStorm to include native Laravel Artisan support. [Read all about it in their blog post](http://blog.jetbrains.com/phpstorm/2013/09/command-line-tools-based-on-symfony-console-doctrine-laravel-in-phpstorm/). - -### New Laravel 4.1 Artisan Features - -Laravel 4.1 is coming closer to its release date and with it a bunch of new features have been added. With 4.1 [Boris REPL is integrated](https://twitter.com/laravelphp/status/380883629292806144) into the "tinker" Artisan command. - -A new "debug" Artisan command has been added for live debugging. Taylor featured this in his Laracon EU talk. - -Also, a new "env" Artisan command has been added to quickly check on which environment your app is running. This one has been back-ported to 4.0. - -And if that wasn't enough, Taylor just released a new "view:publish" command so package builders can publish their views to the application. - -### Leanpub Podcast Interview #13: Taylor Otwell - -Leanpub recently interviewed Taylor Otwell in their podcast series. You can find the interview [on their blog](http://blog.leanpub.com/2013/09/taylor-otwell.html). - -### Laracasts Soft Launch - -[Laracasts](http://laracasts.com/) has finally launched a first series of videos to the public. You can sign up for just $9 a month to get access to a whole range of Laravel screencasts. Laracasts is brought to you by [Jeffrey Way](https://twitter.com/jeffrey_way), one of Laravel's most prominent community contributors. - -## Quick Tip - -Did you know that the Filebuilder class in Laravel has some pretty powerful file handlers besides the standard file functions? [Take a closer look here.](https://gist.github.com/driesvints/6784886) - -## Resources - -### Articles - -[Creating a Subscription-Based Website with Laravel and Recurly, Part 1](http://www.sitepoint.com/creating-subscription-based-website-laravel-recurly-1/) -[Creating a Subscription-Based Website with Laravel and Recurly, Part 2](http://www.sitepoint.com/creating-subscription-based-website-laravel-recurly-2/) -[The Less Code to Write, the Better, Right? Then Use Laravel.](http://www.myjive.com/code-write-better-right-laravel) -[Codesleeve Laravel 4 Asset Pipeline (inspired by rails/sprockets)](http://www.keltdockins.com/2/post/2013/09/codesleeve-laravel-4-asset-pipeline-inspired-by-railssprockets.html) -[Caching routes using filters in Laravel 4](http://markvaneijk.com/caching-routes-using-filters-in-laravel-4) -[An Eloquent Notification Strategy](http://ryantablada.com/post/an-eloquent-notification-strategy) -[Getting Started with Laravel 4 and PostgreSQL](http://www.codedungeon.org/2013/09/10/getting-started-with-laravel-and-postgresql/) - -### Applications & Packages - -[Acclimate](https://github.com/jeremeamia/acclimate) -[XStatic](https://github.com/jeremeamia/xstatic) - -### Other Links - -[Clockwork](https://github.com/itsgoingd/clockwork) -[Deploying Snappy](http://blog.userscape.com/post/deploying-snappy) - -## Events - -**October 3, 2013 - Southlake, TX** -[Database Bliss: Tips, Tricks, & Pitfalls of Database Design](http://www.meetup.com/laravel-dallas-fort-worth/events/138790412/) - -**October 3, 2013 - Groningen, Netherlands** -[October meetup: Laravel 4](http://www.meetup.com/GroningenPHP/events/139600382/) - -**October 10, 2013 - Fishers, IN** -[Build Systems, Unit Testing, Vagrant, Authentication, Service Providers/IoC, etc](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/141852692/) - -**November 9 or 10, 2013 - Los Angeles, CA** -[Introduction to Laravel PHP framework](http://www.socalcodecamp.com/socalcodecamp/session.aspx?sid=819cd36a-f492-483b-802d-6a770b4f1dcf) - -**November 15, 2013 - Location TBD** -[Laravel Seattle / Vancouver UG Meeting](http://www.meetup.com/Laravel-Seattle-Vancouver/events/142345922/) - -## We want you...! - -...to send us your articles, packages, meetups, screencasts, whatever you like to be featured in the next Laravel Weekly! Send all your details to hello@laravelweekly.com (mailto:hello@laravelweekly.com) \ No newline at end of file diff --git a/issues/laravel-weekly-26.md b/issues/laravel-weekly-26.md deleted file mode 100644 index 43b1b4e..0000000 --- a/issues/laravel-weekly-26.md +++ /dev/null @@ -1,63 +0,0 @@ -# Laravel Weekly #26 - -Small update this week. The new Laravel IO Podcast is finally out and the first Laracon EU Video is up. Enjoy! - -[The Laravel Weekly website is finally online.](http://laravelweekly.com/) It's a small one page website where you can subscribe to the newsletter. Please use it and forward it to all your friends! ;-) -I've also updated the Github repo with a list of all the previous editions. [Feel free to check it out.](https://github.com/LaravelIO/LaravelWeekly) - -Thanks for reading, see you next week! - -## News - -### First Laracon EU Video Released - -The first Laracon EU video has been released to the public. In this first video, [Taylor talks about building custom Artisan commands](http://www.youtube.com/watch?v=fGwnCWfzLRI&hd=1) . - -### Laravel IO Podcast #6 - -[The 6th Laravel IO podcast](http://laravel.io/topic/52/podcast-6-with-ian-landsman-and-dan-syme) has been released. In this episode they talk with Dan Syme, creator of Cartalyst, and Ian Landsman, creator of UserScape about business and the open-source world. - -### Laravel 4 - The Shirt - -After several requests a new run of Laravel shirts has been put up. [Still some days left to claim yours!](http://teespring.com/laravel-reloaded) - -## Quick Tip - -This week's quick tip is provided to you by [Jonathan Garbee](http://jonathan.garbee.me/). [Did you know about Laravel's Tinker command?](https://gist.github.com/Garbee/6875041) - -## Resources - -### Articles - -[Unit testing packages with laravel dependencies](http://kirkbushell.me/unit-testing-packages-with-laravel-dependencies) -[Laravel 4 API](https://medium.com/on-coding/c643022433ad) -[Form macros in Laravel](http://jonathan.garbee.me/2013/09/form-macros-in-laravel.html) - -### Applications & Packages - -[Modules in Laravel 4](https://github.com/creolab/laravel-modules) -[Database Backup](https://github.com/ShawnMcCool/database-backup) -[Syntara, admin dashboard](http://forums.laravel.io/viewtopic.php?id=11995&p=1) -[A Comprehensive Tutorial for Deploying Laravel 4 on Heroku](http://blog.enge.me/post/a-comprehensive-tutorial-for-deploying-laravel-4-on-heroku) -[Laravel Localization](https://github.com/mcamara/laravel-localization) -[PHP OAuth 2.0 Server for Laravel](https://github.com/lucadegasperi/oauth2-server-laravel) -[Laravel Security Component](https://github.com/barryvdh/laravel-security) -[Laravel 4 Nested Set](https://github.com/lazychaser/laravel4-nestedset) - -## Events - -**October 10, 2013 - Fishers, IN** -[Build Systems, Unit Testing, Vagrant, Authentication, Service Providers/IoC, etc](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/141852692/) - -**October 17, 2013 - Washington, DC** -[Laravel Meetup - Talks + Bring your code](http://www.meetup.com/Capital-Laravel-Group/events/144139222/) - -**November 9 or 10, 2013 - Los Angeles, CA** -[Introduction to Laravel PHP framework](http://www.socalcodecamp.com/socalcodecamp/session.aspx?sid=819cd36a-f492-483b-802d-6a770b4f1dcf) - -**November 15, 2013 - Location TBD** -[Laravel Seattle / Vancouver UG Meeting](http://www.meetup.com/Laravel-Seattle-Vancouver/events/142345922/) - -## We want you...! - -...to send us your articles, packages, meetups, screencasts, whatever you like to be featured in the next Laravel Weekly! Send all your details to [hello@laravelweekly.com](mailto:hello@laravelweekly.com) \ No newline at end of file diff --git a/issues/laravel-weekly-27.md b/issues/laravel-weekly-27.md deleted file mode 100644 index 7268c1f..0000000 --- a/issues/laravel-weekly-27.md +++ /dev/null @@ -1,73 +0,0 @@ -# Laravel Weekly #27 - -A little bit late but here's issue #27! - -More and more Laracon EU videos got released this week. [Have a look on the website](http://laracon.eu/2013/talks/) to see which ones are already available. Also, a new Laravel IO podcast episode! - -Thanks for reading and see you next week! - - -## News - -### More Laracon EU Videos Released - -More videos from Laracon EU have been released. [A dedicated page](http://laracon.eu/2013/talks/) has been put up to showcase them so keep an eye on that page for the rest of the videos. - -### Cartalyst Launches New Website - -Cartalyst have launched [their new website](https://cartalyst.com/). A much more cleaner look and [better arsenal page](https://cartalyst.com/arsenal) for their packages, applications and extensions. - -### Laravel 4 Cookbook - -[Christopher Pitt](https://twitter.com/followchrisp), who wrote a couple of nice Laravel related articles has teamed up with Taylor Otwell to publish his articles as a Leanpub ebook. You can now [purchase this book at leanpub.com](https://leanpub.com/laravel4cookbook). Much more to come. - -### Laravel IO Podcast #7 - -[In this episode](http://laravel.io/topic/57/podcast-7-with-matthew-machuga-and-jeroen-van-der-gulik-aka-n0xie) we discuss CQRS, how everyone loves Windows 8, building GUI apps with PHP, organizing a conference in 2014 and a bunch of other stuff. - -### What I've Been Watching #1 - -[Shawn McCool](https://twitter.com/ShawnMcCool) has collected a nice list of [interesting programming-related talks](http://laravel.io/topic/54/what-ive-been-watching). - - -## Resources - -### Articles - -[Prismic.io for Laravel - Re-defining the CMS](http://blog.enge.me/post/prismicio-for-laravel-re-defining-the-cms) -[Composer - A Crash Course](https://medium.com/on-coding/ad56bdd66beb) -[Simple Laravel CRUD with Resource Controllers](http://scotch.io/tutorials/simple-laravel-crud-with-resource-controllers) -[Simple and Easy Laravel Routing](http://scotch.io/tutorials/simple-and-easy-laravel-routing) -[How to add Previous and Next links on wardrobe](http://blog.marcomonteiro.net/post/how-to-add-previous-and-next-links-on-wardrobe) - -### Applications & Packages - -[Artisan Anywhere](https://github.com/antonioribeiro/artisan-anywhere) -[Laravel Markdown](https://github.com/KennedyTedesco/laravel-markdown) -[Laravel Postmark Inbound Parser](https://github.com/camelCaseD/postmark-inbound-laravel) -[Prismic.io for Laravel](https://github.com/adamgoose/prismic-io) -[laravel-html-cachebusting](https://github.com/MetalMatze/laravel-html-cachebusting) -[FusionInvoice](https://github.com/jesseterry/FusionInvoice) -[Container Debug](https://github.com/daylerees/container-debug) - -### Screencasts - -[Create a Laravel artisan command package](https://www.youtube.com/watch?v=VBR0VLOJaVE) - - -## Events - -**October 17, 2013 - Washington, DC** -[Laravel Meetup - Talks + Bring your code](http://www.meetup.com/Capital-Laravel-Group/events/144139222/) - -**November 7, 2013 - Groningen** -[November meetup: When Programmers Start a Business](http://www.meetup.com/GroningenPHP/events/145467252/?fromEmail=145467252&rv=ea1) - -**November 9 or 10, 2013 - Los Angeles, CA** -[Introduction to Laravel PHP framework](http://www.socalcodecamp.com/socalcodecamp/session.aspx?sid=819cd36a-f492-483b-802d-6a770b4f1dcf) - -**November 15, 2013 - Location TBD** -[Laravel Seattle / Vancouver UG Meeting](http://www.meetup.com/Laravel-Seattle-Vancouver/events/142345922/) - -**Date TBA - Location TBD** -[Discuss the Benefits of Laravel](http://www.meetup.com/laravel-chicago/events/143828992/) \ No newline at end of file diff --git a/issues/laravel-weekly-28.md b/issues/laravel-weekly-28.md deleted file mode 100644 index abf529f..0000000 --- a/issues/laravel-weekly-28.md +++ /dev/null @@ -1,86 +0,0 @@ -# Laravel Weekly #28 - -We're back after a small break. Doing a weekly newsletter can sometimes be tedious and time-consuming but we're glad to bring you issue #28! We've passed the 600 readers milestone a couple of days ago which is insane! Thanks again so much for all of your support. - -It's November so Laravel 4.1 is nearing its completion. [Taylor has been teasing](https://twitter.com/laravelphp/status/391766638053191680) some [new changes](https://twitter.com/laravelphp/status/391057678098632704) these past few weeks and we're excited to see what the final features are going to be. - -As always, thanks for reading! - - -## News - -### Podcast #8 - Laracasts, Laravel 4.1, Laraconus, teasers and more - -[In the 8th podcast episode](http://laravel.io/topic/59/podcast-8-laracasts-laravel-41-laraconus-teasers-and-more), Taylor Otwell and Jeffrey Way join us and talk about what they've been working on. We discuss Laracasts and Laravel 4.1 including some focus on the Laravel documentation. Taylor also gives some information about LaraconUS. - -### 50% Discount For Laravel In Action - -Manning Publications recently released a new book called "[Laravel In Action](http://www.manning.com/surguy/)". It's been written by our active community member [Maksim Surguy](https://twitter.com/msurguy). The book covers beginner steps with Laravel as well as practical topics. - -Manning Publications is also giving a 50% discount to our Laravel Weekly readers! Use coupon code mllaravelco when checking out. The coupon code is available until November 12. - -### Built with Laravel - -[Maksim Surguy](https://twitter.com/msurguy) also [released a new website](http://builtwithlaravel.com/) a couple of days ago which showcases websites which were built with Laravel. - -### Organizing Snappy - -[In a new blog post](http://blog.userscape.com/post/organizing-snappy), [Userscape](http://www.userscape.com/) reveal how they organise their application code for their flagship product Snappy, which is built on top of Laravel. Since most of the programming is done by [Taylor Otwell](https://twitter.com/taylorotwell), you can see some applied concepts from his book, [Laravel: From Apprentice To Artisa](https://leanpub.com/laravel). - -### Laravel Application Development Cookbook - -[PacktPub](http://www.packtpub.com/) has published a new Laravel book called "[Laravel Application Development Cookbook](http://www.packtpub.com/laravel-application-development-cookbook/book)". The book contains lots of tips and tutorials on various subjects as authentication, testing an security. You can both buy it in ebook and printed format. - -### Laravel 4.2 Will Use PHP 5.4 - -In recent news, Taylor revealed that [Laravel 4.2 will be require at least PHP 5.4](https://groups.google.com/forum/#!msg/php-fig/ogp03OHbVJ0/GBgTVcNY1J0J). - -### Laracasts Adds Yearly Subscription Option - -[Laracasts has added an option to subscribe for one year](https://laracasts.com/join). This saves you 20% over the monthly plan! - - -## Resources - -### Articles - -[Tinkering with Tinker Like an Artisan](http://blog.enge.me/post/tinkering-with-tinker-like-an-artisan) -[Laravel 4 Real Time Chat](https://medium.com/on-coding/eaa550829538) -[Seeding Laravel Data using FillText Service](http://www.codedungeon.org/2013/11/03/seeding-laravel-data-using-filltext-service/) -[Getting Inheritance Straight](http://ryantablada.com/post/getting-inheritance-straight) -[Juggling Larger Laravel Applications](http://ryantablada.com/post/juggling-larger-laravel-applications) -[Laravel 4 Packages](https://medium.com/on-coding/5963ca9d6499) -[How to setup Local and Production environments on Laravel](http://www.patrickcurl.com/setup-local-production-environments-laravel/) - -### Applications & Packages - -[Laravel 4 - Artisan Produce](https://github.com/JasonMortonNZ/Laravel-Artisan-Produce) - -### Screencasts - -[What I've Been Watching #2](http://laravel.io/topic/55/what-ive-been-watching-2) - -### Other Links - -[Laravel Indonesia](http://id-laravel.com/) - - -## Events - -**November 7, 2013 - Groningen** -[November meetup: When Programmers Start a Business](http://www.meetup.com/GroningenPHP/events/145467252/?fromEmail=145467252&rv=ea1) - -**November 7, 2013 - Evanston, IL** -[Discuss the Benefits of Laravel](http://www.meetup.com/laravel-chicago/events/143828992/) - -**November 7, 2013 - Grapevine, TX** -[Separating Responsibilities: Clean Controllers = Better Code](http://www.meetup.com/laravel-dallas-fort-worth/events/142635502/) - -**0November 9, 2013 - Los Angeles, CA** -[Introduction to Laravel PHP framework](http://www.socalcodecamp.com/socalcodecamp/session.aspx?sid=819cd36a-f492-483b-802d-6a770b4f1dcf) - -**November 15, 2013 - Location TBD** -[Laravel Seattle / Vancouver UG Meeting](http://www.meetup.com/Laravel-Seattle-Vancouver/events/142345922/) - -**November 21, 2013 - Fishers, IN** -[Discuss Laravel 4.1 Changes & Laravel Security Libraries](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/149218982/) \ No newline at end of file diff --git a/issues/laravel-weekly-29.md b/issues/laravel-weekly-29.md deleted file mode 100644 index 1b9ea5b..0000000 --- a/issues/laravel-weekly-29.md +++ /dev/null @@ -1,67 +0,0 @@ -# Laravel Weekly #29 - -Welcome to issue #29! While we reported last week that we passed the 600 subscriber milestone we can happily report that just in one week we passed the 700 subscriber milestone as well! 721 people will be reading this issue. Again, thanks for all of your support! - -In this issue we've added a separate section for Laracasts in the resources section. Laracasts gets updated weekly with great screencasts so from now on we'll provide you a list with new screencasts which were published in the past week. We'll mark the free issues after the link. - -See you next week! - - -## News - -### Laravel Snippets - -[John Kevin M. Basco](https://twitter.com/johnkevinmbasco) recently released [a website which collects useful Laravel coding snippets](http://laravelsnippets.com/). If you're looking for a certain solution at a persistent problem or just want to share your own useful snippet then this site is for you. - -### Interview With Jeffrey Way - -Tutsplus recently released [an interview with Jeffrey Way](http://dev.tutsplus.com/articles/interview-with-jeffrey-way--net-35520), creator of [Laracasts](https://laracasts.com/) and one of Laravel's most prominent community members. - -### PHP Weekly - -PHP Weekly, a weekly newsletter filled with PHP resources, articles, etc, recently returned to provide us once again with weekly PHP news. [Check out their website](http://phpweekly.info/) to subscribe and for further info. - - -## Resources - -### Articles - -[Laravel Shop tutorial #1 – Building a review system](http://maxoffsky.com/code-blog/laravel-shop-tutorial-1-building-a-review-system/) -[Authentication With Laravel 4](http://net.tutsplus.com/tutorials/php/authentication-with-laravel-4) -[Eloquent and SQL Views](http://programmingarehard.com/2013/11/10/eloquent_and_views.html) -[Laravel 4 tips and resourses](http://www.codeforest.net/laravel-4-tips-resourses) -[Simple Laravel Layouts using Blade](http://scotch.io/tutorials/simple-laravel-layouts-using-blade) -[The future of web development is Laravel](http://hillelcoren.com/2013/11/07/the-future-of-web-development-is-laravel/) - -### Applications & Packages - -[Bugsnag Notifier for Laravel](https://github.com/bugsnag/bugsnag-laravel) - -### Laracasts - -[When to App::make()](https://laracasts.com/lessons/when-to-app-make) -[Reports and Graphs](https://laracasts.com/lessons/reports-and-graphs) -[View Presenters](https://laracasts.com/lessons/presenters) -[Save Time With Bower](https://laracasts.com/lessons/save-time-with-bower) -[The N+1 Problem](https://laracasts.com/lessons/eager-loading) (free) -[Create/Edit Forms](https://laracasts.com/lessons/one-form-to-rule-them-all) -[Fun With Dates](https://laracasts.com/lessons/fun-with-dates) - -### Other Links - -[Laravel 4 Facades: Sublime Text package](https://sublime.wbond.net/packages/Laravel%204%20Facades) - - -## Events - -**November 15, 2013 - Location TBD** -[Laravel Seattle / Vancouver UG Meeting](http://www.meetup.com/Laravel-Seattle-Vancouver/events/142345922/) - -**November 20, 2013 - New Albany, OH** -[Monthly Laravel Meetup - Kickoff and Taylor Otwell Q&A](http://www.meetup.com/Ohio-Laravel/events/148819212/) - -**November 21, 2013 - Fishers, IN** -[Discuss Laravel 4.1 Changes & Laravel Security Libraries](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/149218982/) - -**December 10, 2013 - Brussels, Belgium** -[December Laravel Meetup](http://www.meetup.com/Laravel-Brussels/events/148643492) \ No newline at end of file diff --git a/issues/laravel-weekly-30.md b/issues/laravel-weekly-30.md deleted file mode 100644 index daa6410..0000000 --- a/issues/laravel-weekly-30.md +++ /dev/null @@ -1,62 +0,0 @@ -# Laravel Weekly #30 - -Small update this week. Seems like more and more details about the next Laracon are slowly being revealed. Looks like the conference will be much larger then last year with more speakers. 2-track conference perhaps? Who knows... - -What I do know is that we could use some help for the Laravel Weeklies! We used to do quick tips but unfortunately we haven't had much time to dig up new quick tips for Laravel Weekly. If any of you want to help out and send in a quick tip for any of the next issues then send them to hello@laravelweekly.com. Please send along a [Github Gist](https://gist.github.com/) with the Quick-Tip! We'll of course feature your name and link to a page of your choice (personal website, twitter account,...). - -See ya next week! - - -## News - -### What's new and upcoming in Laravel 4.1 - -[Mark Van Eijk](http://markvaneijk.com/) has put [a wonderful post](http://markvaneijk.com/whats-new-and-upcoming-in-laravel-4-1) together about some of the new features in the upcoming Laravel 4.1 release. - -### Laracon Is Coming - -Seems that more and more details about the next Laracon US are getting revealed. We've found some interesting concept designs on Dribbble... - -[http://dribbble.com/shots/1317558-Laracon](http://dribbble.com/shots/1317558-Laracon) -[http://dribbble.com/shots/1315565-Laracon-2014/attachments/184705](http://dribbble.com/shots/1315565-Laracon-2014/attachments/184705) -[http://dribbble.com/shots/1315802-Branding-Illustration-Laracon-14-Billieray](http://dribbble.com/shots/1315802-Branding-Illustration-Laracon-14-Billieray) - -And... [a concept for the new website](http://dribbble.com/shots/1317294-Laracon-Site?list=users). Judging from the concept there will be early bird tickets as well as VIP tickets. And if the text in the description is correct we can expect a much larger conference than last time with more speakers and two full conference days. We can't wait to see what the rest of the conference holds! - - -## Resources - -### Articles - -[Survey: Doc-Associated Blogs?](http://blog.enge.me/post/survey-doc-associated-blogs) -[Laravel 4 Multisites](https://medium.com/on-coding/26cdc75e4810) -[Add an Asset Pipeline to Laravel 4](http://culttt.com/2013/11/04/add-asset-pipeline-laravel-4) -[What I've Been Watching #3](http://laravel.io/topic/60/what-ive-been-watching-3) -[Quick Tip: Using Laravel Blade with AngularJS](http://scotch.io/bar-talk/quick-tip-using-laravel-blade-with-angularjs) -[Getting Started With Codeception in Laravel 4](http://tntstudio.us/blog/getting-started-with-codeception-in-laravel4) - -### Laracasts - -[Laravel From Scratch - Installation](https://laracasts.com/series/laravel-from-scratch/episodes/1) -[Laravel From Scratch - M-V-Huh?](https://laracasts.com/series/laravel-from-scratch/episodes/2) -[Laravel From Scratch - Models](https://laracasts.com/series/laravel-from-scratch/episodes/3) -[Laravel From Scratch - Database Access](https://laracasts.com/series/laravel-from-scratch/episodes/4) -[Laravel From Scratch - Eloquent Basics](https://laracasts.com/series/laravel-from-scratch/episodes/5) -[Advanced Selections](https://laracasts.com/lessons/advanced-eloquent-selections) -[Bash Bootstraps](https://laracasts.com/lessons/advanced-eloquent-selections) -[Soft Deletions](https://laracasts.com/lessons/soft-deletions) -[Billing With Stripe - Customers and Exceptions](https://laracasts.com/series/billing-with-stripe/episodes/5) -[Let's Talk Exceptions](https://laracasts.com/lessons/lets-talk-exceptions) - -### Other Links - -[Becoming a PHP Professional: The Missing Link](http://www.sitepoint.com/becoming-php-professional-missing-link/) - - -## Events - -**November 21, 2013 - Fishers, IN** -[Discuss Laravel 4.1 Changes & Laravel Security Libraries](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/149218982/) - -**December 10, 2013 - Brussels, Belgium** -[December Laravel Meetup](http://www.meetup.com/Laravel-Brussels/events/148643492/) \ No newline at end of file diff --git a/issues/laravel-weekly-31.md b/issues/laravel-weekly-31.md deleted file mode 100644 index 0e9bdca..0000000 --- a/issues/laravel-weekly-31.md +++ /dev/null @@ -1,54 +0,0 @@ -# Laravel Weekly #31 - -It's more than likely that by the next issue Laravel 4.1 will be released. We hope you'll enjoy all of the new features that Taylor has been working on! - -And the rumour mill surrounding Laracon US 2014 isn't stopping. More event branding pictures [have been showing up](http://dribbble.com/shots/1325510-Branding-Laracon-Round-2). - -Enjoy reading this week's issue! - - -## News - -### Laravel 4.1 Upgrade Guide - -In anticipation of the upcoming Laravel 4.1 release, [an upgrade guide](https://github.com/laravel/laravel/blob/develop/upgrade.md) for upgrading to the new version was made. - -### Laravel Recipes - -Laravel Recipes is a keeps track of useful code snippets for Laravel. It's amazing to see so many useful short and practical tutorials. [Why don't you have a look?](http://laravel-recipes.com/) - - -## Resources - -### Articles - -[Deploying a Laravel Application Using Capistrano](http://net.tutsplus.com/tutorials/php/deploying-a-laravel-application-using-capistrano/) - -### Applications and Packages - -[Invoice Ninja](https://github.com/hillelcoren/invoice-ninja) -[Laravel Formfield](https://github.com/JeffreyWay/Laravel-FormField) -[Laravel Trusted Proxies](https://github.com/fideloper/TrustedProxy) -[Breadcrumb](https://github.com/noherczeg/breadcrumb) - -### Laracasts - -[Laravel From Scratch - Blade Basics](https://laracasts.com/series/laravel-from-scratch/episodes/6) -[Laravel From Scratch - Master Pages](https://laracasts.com/series/laravel-from-scratch/episodes/7) -[Laravel From Scratch - From Closures to Controllers](https://laracasts.com/series/laravel-from-scratch/episodes/8) -[Laravel From Scratch - Resourceful Routing](https://laracasts.com/series/laravel-from-scratch/episodes/9) -[Tail Log Files](https://laracasts.com/lessons/artisan-tail) -[Active States](https://laracasts.com/lessons/active-states) -[Foreign Constraints](https://laracasts.com/lessons/foreign-key-constraints) -[Password Resets in 4.1](https://laracasts.com/lessons/laravel-password-resets-in-4-1) -[Package Development](https://laracasts.com/lessons/package-development-101) - -### Other Links - -[Build APIs You Won't Hate](https://leanpub.com/build-apis-you-wont-hate) - - -## Events - -**December 10, 2013 - Brussels, Belgium** -[December Laravel Meetup](http://www.meetup.com/Laravel-Brussels/events/148643492/) \ No newline at end of file diff --git a/issues/laravel-weekly-32.md b/issues/laravel-weekly-32.md deleted file mode 100644 index 20e070d..0000000 --- a/issues/laravel-weekly-32.md +++ /dev/null @@ -1,77 +0,0 @@ -# Laravel Weekly #32 - -I hope you guys all enjoyed the Black Friday and Cyber Monday deals and had a great Thanksgiving! - -Laravel 4.1 is sitting there and waiting to be tagged. Symfony 2.4 got released today which means it's just around the corner. Just a bit longer! - -Have a great week and thanks for reading! - - -## News - -### PHP Town Hall Episode #16 - -[In the latest PHP Townhall episode](http://phptownhall.com/blog/2013/12/02/episode-16-taylor-otwell-laravel41/), [Phill Sturgeon](https://twitter.com/philsturgeon) invited [Taylor Otwell](https://twitter.com/taylorotwell) and [Zack Kitzmiller](https://twitter.com/zackkitzmiller) for the show. Topics for this episode are Laravel 4.1, Go and Vagrant. - -### Fortrabbit Adds Deployment Files - -Fortrabbit recently added a new way to deploy your applications, using deploy files. To have an in-depth look, [here's a tutorial they've written](http://fortrabbit.com/docs/in-depth/deployment-file). [Or watch the screencast on Laracasts](https://laracasts.com/lessons/fortrabbit-deploment-files). - -### A New PSR Standard - -The Acceptance vote for [the new PHP-4 standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader.md) just passed which means you can use it in your projects soon. PSR-4 was mainly designed to give developers an easier way to structure their code. - -### Christmas for Taylor - -Since Taylor has given us such an amazing framework to work with and it's almost time for Christmas, it's time to return the favor! Dayle has set up a fundraiser to buy an awesome present for Taylor's Christmas. [Go donate here!](http://daylerees.com/christmas-for-taylor) :) - -### Laravel Tricks - -Here's another new website by [Maksim Surguy](https://twitter.com/msurguy), this time in co-operation with [Stidges](http://www.stidges.com/). [Laravel Tricks](http://www.laravel-tricks.com/tricks/dynamic-view-assignments) was created to help Laravel community find and share interesting ways of using Laravel. - - -## Quick Tip - -[Pavel Polyakov](https://github.com/PavelPolyakov) provides a great tip on [how to name your routes when using Route::controller()](https://gist.github.com/PavelPolyakov/7688524). - - -## Resources - -### Articles - -[Laravel Queues With Beanstalkd](http://glenntaylor.co.uk/blog/read/laravel-queues-with-beanstalkd) -[Working with jQuery Ajax Uploader and Laravel PHP](http://ryantablada.com/post/working-with-jquery-ajax-uploader-and-laravel-php) -[Decoupling the Framework](http://kristopherwilson.com/2013/11/27/decoupling-the-framework) - -### Applications and Packages - -[Fakefactory](https://github.com/skovachev/fakefactory) -[Laravel Multi Auth](https://github.com/ollieread/multiauth) - -### Laracasts - -[Laravel From Scratch - Record Creation](https://laracasts.com/series/laravel-from-scratch/episodes/11) -[Laravel From Scratch - Validation](https://laracasts.com/series/laravel-from-scratch/episodes/12) -[Laravel From Scratch - Refactoring](https://laracasts.com/series/laravel-from-scratch/episodes/13) -[Fortrabbit Configuration](https://laracasts.com/lessons/fortrabbit-deploment-files) -[Tinkering With Boris](https://laracasts.com/lessons/tinkering-with-boris) -[Migrations Decoded](https://laracasts.com/lessons/migrations-decoded) -[Seeds and Fakes](https://laracasts.com/lessons/seeds-and-fakes) - -### Slides - -[Introduction to Laravel - You have arrived.](https://speakerdeck.com/francisconeves/introduction-to-laravel-you-have-arrived) - -### Other Links - -[The Fall of PEAR and the Rise of Composer](http://benramsey.com/blog/2013/11/the-fall-of-pear-and-the-rise-of-composer/) -[Becoming a PHP Professional: The Importance of Others](http://www.sitepoint.com/becoming-php-professional-importance-others/) - - -## Events - -**December 4, 2013 - Toronto** -[Community Intro and Show/Tell](http://www.meetup.com/Laravel-Toronto/events/147045302/) - -**December 10, 2013 - Brussels, Belgium** -[December Laravel Meetup](http://www.meetup.com/Laravel-Brussels/events/148643492/) \ No newline at end of file diff --git a/issues/laravel-weekly-33.md b/issues/laravel-weekly-33.md deleted file mode 100644 index 471fcbb..0000000 --- a/issues/laravel-weekly-33.md +++ /dev/null @@ -1,57 +0,0 @@ -# Laravel Weekly #33 - -Small update this week. Since I'm running short on content since the latest few issues I'd like to stress again that anyone can send me their articles, packages, projects you're working on etc to be featured in this newsletter. As long as it's Laravel related of course. Send everything to [hello@laravelweekly.com](mailto:hello@laravelweekly.com)! - -Also, if you paste a lot of stickers on your MacBook, you might want to save some room for [these](http://dribbble.com/shots/1337788-Branding-Laracon-Stickers) ;-) - -Thanks for reading and see you next week! - - -## News - -### Laravel France - -Bonjour! [The French Laravel website](http://laravel.fr/), which was created by [Julien Tant](https://twitter.com/AoSiX), has been updated with a fresh look. The new version also features [a wiki](http://wiki.laravel.fr/welcome) to which you can contribute. - - -### Glottos - An Online Translation/Localization System - -The package I'd like to feature this week is [Glottos](https://github.com/antonioribeiro/glottos), built by [Antonio Carlos Ribeiro](https://github.com/antonioribeiro). Glottos is a translation and localization system, meaning it provides support for extending your application with multilingual capabilities. While the package provides support for Laravel out of the box, it's been built to be as framework agnostic as possible. - -If you'd like to see an example implementation, Antonio has built [Glottos Admin](https://github.com/antonioribeiro/glottosAdmin) for you to check out. - - -## Resources - -### Articles - -[HTTP Middleware in Laravel 4.1](http://fideloper.com/laravel-http-middleware) -[Using Grunt with Laravel and Bootstrap](http://blog.elenakolevska.com/using-grunt-with-laravel-and-bootstrap/) - -### Applications and Packages - -[BrainSocket](http://brainsocket.brainboxmedia.ca/) -[Laravel Extended Validator](https://github.com/crhayes/laravel-extended-validator) - -### Laracasts - -[Laravel From Scratch - Preparing Your Database](https://laracasts.com/series/laravel-from-scratch/episodes/14) -[Hands-On: Payments](https://laracasts.com/lessons/hands-on-payments) -[Custom Facades](https://laracasts.com/lessons/search-and-custom-facades) -[CSRF Explained](https://laracasts.com/lessons/csrf-explained) - -### Other Links - -[Fun with Array Interfaces](http://www.sitepoint.com/fun-array-interfaces/) - - -## Events - -**December 10, 2013 - Brussels, Belgium** -[December Laravel Meetup](http://www.meetup.com/Laravel-Brussels/events/148643492/) - -**December 19, 2013 - Fishers, IN** -[Laravel Meetup, Holiday Edition at Hearthstone](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/154339702/) - -**January 14, 2014 - Berlin** -[Laravel Usergroup Berlin Meeting](http://www.meetup.com/laravel-berlin/events/152350192/) \ No newline at end of file diff --git a/issues/laravel-weekly-34.md b/issues/laravel-weekly-34.md deleted file mode 100644 index 67ffe90..0000000 --- a/issues/laravel-weekly-34.md +++ /dev/null @@ -1,82 +0,0 @@ -# Laravel Weekly #34 - -Whoha! You guys have been busy. So many articles this week. Thanks for all of your contributions! - -Laravel 4.1 is finally here. Browse through the newsletter to find articles, tips and screencasts about what's new in the latest version. - -Thanks for reading! - - -## News - -### Laravel 4.1 Released - -It's finally here! Laravel 4.1 was released last week. If you want to know what's new I suggest you check out some of the articles in the resources list below. There a few ones which go over some of the new features. - -Want to know how to upgrade? [An upgrade guide](https://github.com/laravel/laravel/blob/master/upgrade.md) has been made available. Or [watch the Laracasts screencast](https://laracasts.com/lessons/upgrade-laravel-to-4-1)! - -### Laravel.com Got A New Look - -[Laravel.com](http://laravel.com/) got updated with a fresh look for the new 4.1 release. A new feature is [the documentation](http://laravel.com/docs) versioning where you can get the documentation for a specific Laravel version. - -### Laravel 4 E-Commerce: A Comprehensive Tutorial - -[Christopher Pitt](https://twitter.com/followchrisp) is back with another in-depth tutorial. In his latest tutorial he takes you through the process of [building an e-commerce application in Laravel 4](https://medium.com/p/c5afca925f28). - - -## Quick Tip - -This week's quick tip is provided by [Maksim Surguy](https://twitter.com/msurguy) who explains [how to use Blade's new default string feature in Laravel 4.1](http://www.laravel-tricks.com/tricks/using-new-feature-of-41-to-output-a-default-string). - - -## Resources - -### Articles - -[Laravel Application Development Cookbook – Review](http://www.codeforest.net/laravel-application-development-cookbook) -[Seeding a Laravel 4 database](http://culttt.com/2013/12/16/seeding-laravel-4-database/) -[How to Laravel series: 01 How I met my Laravel](http://christoph-rumpel.com/2013/12/how-to-laravel-series-01-how-i-met-my-laravel/) -[How to Laravel series: 02 What is new in Laravel 4.1](http://christoph-rumpel.com/2013/12/how-to-laravel-series-02-what-is-new-in-laravel-4-1/) -[Laravel and non-composer-ised libraries](http://blog.iwader.co.uk/laravel-and-non-composer-ised-libraries/) -[Simple Use Case for Query Strings in a Laravel 4 Site and How to Use Them](http://unisys12.blogspot.be/2013/12/simple-use-case-for-query-strings-in.html) -[Laravel 4.1 Released – Installs In 30 Seconds Flat!](http://www.codem0nk3y.com/2013/12/laravel-4-1-released-installs-in-30-seconds-flat/) -[Seeding Laravel 4 user profiles using randomuser.me](http://creative-punch.net/2013/12/seeding-laravel-4-user-profiles-using-randomuser-me/) -[How to Register Helper Classes in Laravel 4](http://www.ericdiviney.com/blog/how-to-register-helper-classes-in-laravel-4) -[Using polymorphic relationships of Laravel for SEO content](http://maxoffsky.com/code-blog/using-polymorphic-relationships-of-laravel-for-seo-content/) -[How To Create a Custom Auth Driver in Laravel 4](http://anthon.io/how-to-create-a-custom-auth-driver-in-laravel-4/) -[Absolute must-have packages for any Laravel 4 project](http://creative-punch.net/2013/12/the-absolute-must-have-packages-for-any-laravel-4-project/) -[Creating a Basic ToDo Application With Laravel 4 – Part 1](http://www.flynsarmy.com/2013/12/creating-a-basic-todo-application-with-laravel-4-part-1/) - -### Applications and Packages - -[Laravel 4 jqGrid package](https://github.com/mgallegos/laravel-jqgrid) -[RabbitMQ driver for Laravel](https://github.com/fintech-fab/laravel-queue-rabbitmq) -[Laravel 4 Auth token](https://github.com/tappleby/laravel-auth-token) -[Laravel TCPDF](https://github.com/maxxscho/laravel-tcpdf) - -### Laracasts - -[Basic Auth in 4 Minutes](https://laracasts.com/lessons/basic-authentication-in-four-minutes) -[Better Error Tracking](https://laracasts.com/lessons/better-error-tracking-with-bugsnag) -[Discussing Transports](https://laracasts.com/lessons/discussing-transports) -[Upgrading to Laravel 4.1](https://laracasts.com/lessons/upgrade-laravel-to-4-1) -[Make PHPStorm Pretty](https://laracasts.com/lessons/make-phpstorm-pretty) -[Handle HTML Meta Tags](https://laracasts.com/lessons/handle-html-meta-tags) -[Use Events](https://laracasts.com/lessons/use-events) - -### Other Links - -[SensioLabs raises 5 million euros to boost the Symfony ecosystem](http://fabien.potencier.org/article/71/sensiolabs-raises-5-million-euros-to-boost-the-symfony-ecosystem) -[Object-Oriented Design in PHP](https://tutsplus.com/course/object-oriented-design-in-php/) - - -## Events - -**December 19, 2013 - Fishers, IN** -[Laravel Meetup, Holiday Edition at Hearthstone](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/154339702/) - -**January 14, 2014 - Berlin** -[Laravel Usergroup Berlin Meeting](http://www.meetup.com/laravel-berlin/events/152350192/) - -**January 15, 2014 - Columbus, OH** -[Enterprise Considerations for Laravel](http://www.meetup.com/Ohio-Laravel/events/155694442/) \ No newline at end of file diff --git a/issues/laravel-weekly-35.md b/issues/laravel-weekly-35.md deleted file mode 100644 index f4c360f..0000000 --- a/issues/laravel-weekly-35.md +++ /dev/null @@ -1,81 +0,0 @@ -# Laravel Weekly #35 - -Here's the last issue for 2013. I wish each and everyone of you a happy new year. May 2014 be as great for you as 2013 was for me. - -I started with Laravel Weekly as a series of blog posts when I was first learning on how to use Laravel. I couldn't have imagined it becoming such a big thing. Just last week, Laravel Weekly had its 900th subscriber signed up. A dazzling number. I can't thank you all enough for all the support you've given this project. - -I have some plans for Laravel Weekly in 2014 and some more projects to come and can't wait to share them with you. - -Thanks for reading and see ya next year! - -PS. Don't forget Laravel Weekly has a [twitter account](https://twitter.com/LaravelWeekly) which I also use to send out the latest issues. I also love feedback so don't be shy on sending a mention now and then :-) - - -## News - -### Laracon 2014 Announced! - -The wait is over. [Laracon US 2014 has been officially announced](http://conference.laravel.com/). Tickets will go on sale starting from January 1st 2014. - -Call for speakers is open as well so if you want to submit a talk just submit it through the conference page. Also, if you'd like to sponsor Laracon follow the instructions on the website. - -### $10 off from "Laravel: From Apprentice to Artisan" - -It's the last days of the holiday season and there are still some discounts you can take advantage of. One being a $10 dollar discount on Taylor Otwell's book "[Laravel: From Apprentice to Artisan](https://leanpub.com/laravel)". Use the coupon code "holidays". - -### Premium Laravel Package - -Speaking of e-books. There's currently a sale on Leanpub where you can get two great Laravel e-books for the price of just $38.99. [Grab the bundle here.](https://leanpub.com/b/laravel) - - -## Quick Tip - -This week's quick tip is provided by [Pascal Borreli](https://twitter.com/pborreli). [Try aliasing composer with the hhvm command](https://twitter.com/pborreli/status/413471194596515842) for an insane speed boost! - - -## Resources - -### Articles - -[Eager Loading in Laravel 4](http://culttt.com/2013/12/30/eager-loading-laravel-4/) -[Database Transactions in Laravel](http://fideloper.com/laravel-database-transactions) -[Sending Email with Laravel, SendGrid, Beanstalkd and Go](http://b.z19r.com/post/sending-email-with-laravel-sendgrid-beanstalkd-and-go) -[Laravel shop tutorial 3 – Implementing Smart Search](http://maxoffsky.com/code-blog/laravel-shop-tutorial-3-implementing-smart-search/) -[Implementing Full-Text search in Laravel 4](http://creative-punch.net/implementing-laravel-4-full-text-search/) - -### Applications and Packages - -[etags-middleware](https://github.com/aranw/etags-middleware) -[tardiqueue - Delayed queue for Laravel](https://github.com/franzliedke/tardiqueue) - -### Laracasts - -[Vagrant and Sequel Pro](https://laracasts.com/lessons/vagrant-and-sequel-pro) -[File Uploads 101](https://laracasts.com/lessons/file-uploads-101) -[Email Notifications](https://laracasts.com/lessons/email-notifications-with-mailchimp) -[Wildcard Subdomains](https://laracasts.com/lessons/wildcard-subdomains) -[Crazy Simple Pagination](https://laracasts.com/lessons/crazy-simple-pagination) -[Coding With Intent](https://laracasts.com/lessons/coding-with-intent) -[Laravel and Angular](https://laracasts.com/lessons/laravel-and-angular) -[Image Manipulation](https://laracasts.com/lessons/laravel-image-manipulation) - -### Books - -[Microbook: Select2 and Laravel](https://leanpub.com/select2-l4) - -### Other Links - -[Build Virtual Machines Easily With PuPHPet](http://www.sitepoint.com/build-virtual-machines-easily-puphpet/) -[Build Virtual Machines Easily with PuPHPet – Part 2](http://www.sitepoint.com/build-virtual-machines-easily-puphpet-part-2/) - - -## Events - -**January 14, 2014 - Berlin** -[Laravel Usergroup Berlin Meeting](http://www.meetup.com/laravel-berlin/events/152350192/) - -**January 15, 2014 - Columbus, OH** -[Enterprise Considerations for Laravel](http://www.meetup.com/Ohio-Laravel/events/155694442/) - -**May 15-16, 2014 - New York** -[Laracon US 2014](http://conference.laravel.com/) \ No newline at end of file diff --git a/issues/laravel-weekly-36.md b/issues/laravel-weekly-36.md deleted file mode 100644 index 3255e26..0000000 --- a/issues/laravel-weekly-36.md +++ /dev/null @@ -1,85 +0,0 @@ -# Laravel Weekly #36 - -Happy new year everyone! Here's the first issue of 2014. - -First of all I'd like to say a big thank you to Laracasts for mentioning us in [its recent community screencast](https://laracasts.com/lessons/laravel-community-crash-course)! Thanks to them many new readers found their way to Laravel Weekly. While we were excited to announce that we reached 900 subscribers last year we can now let you know that we've grown to more than 1200 subscribers! Insanity! - -The first Laracon speakers were announced over the past few days. The conference is starting to look really exciting. We hope many of you can make it! Definitely check out the Laracon give-away by Snappy below in the news to win a free ticket. - -See you next week! - - -## News - -### The Laravel Community - -[Laracasts](https://laracasts.com) has made a great screencast about the Laravel community, some of its prominent members and interesting resources. Even Laravel Weekly got featured! [Go check out the screencast here](https://laracasts.com/lessons/laravel-community-crash-course) . - - -### First Laracon Speakers Announced - -The first Laracon speakers have been announced. - -[Sara Golemon](https://twitter.com/SaraMG) of Facebook will be speaking about HHVM. -[Jeremy Lindblom](https://twitter.com/jeremeamia) will teach us how to master the Amazon SDK. -[Jeffrey Way](https://twitter.com/jeffrey_way) of Laracasts will also be speaking. -And last but not least, our very own [Shawn McCool](https://twitter.com/ShawnMcCool) will be showing us the architecture behind the new [Laravel.io](http://laravel.io). - -[Get your tickets here.](https://conference.laravel.com/) - -### October CMS - -[October CMS](http://octobercms.com/) is an upcoming and promising self-hosted, open-source CMS built with Laravel. Subscribe to the newsletter to get a chance to try out the beta. - -### Laracon Ticket Giveaway - -[Snappy](http://besnappy.com/) is giving away two tickets to Laracon and 10 Laravel ebooks from Leanpub. Check out the competition right [here](http://besnappy.com/laracon). - -### Groupiful - -[Groupiful](https://groupiful.com/) is a brand new SaaS that provides an easy way for groups to manage communication, tasks, notes, files and more. It's built on Laravel so I thought it was definitely worth sharing here. If you want to read more, check out [the introduction post on their blog](https://groupiful.com/blog/post/welcome-to-groupiful). - - -## Resources - -### Articles - -[How to Laravel series: Two ways of implementing Grunt to Laravel](http://christoph-rumpel.com/2014/01/how-to-laravel-series-two-ways-of-implementing-grunt-to-laravel/) -[Working with Cache in Laravel 4](http://culttt.com/2014/01/06/working-cache-laravel-4/) -[Laravel on HHVM](http://dmiller.io/blog/2014/01/04/laravel-on-hhvm/) -[Sortable index view tables with Laravel 4](http://creative-punch.net/2014/01/sortable-index-view-laravel-4/) -[Visualizing Laravel relationships](http://matthewhailwood.co.nz/visualizing-laravel-relationships/) - -### Applications and Packages - -[HTML to PDF Converter for Laravel 4](https://github.com/cangelis/l4pdf) -[Laravel-Youtube](https://github.com/FbF/Laravel-Youtube) - -### Laracasts - -[Zero to PostgreSQL](https://laracasts.com/lessons/postgres-and-laravel) -[The Laravel Community](https://laracasts.com/lessons/laravel-community-crash-course) -["Favorite This": Part 1](https://laracasts.com/lessons/favorites-part-1) -["Favorite This": Part 2](https://laracasts.com/lessons/favorites-part-2) -[Easy HTTP Requests](https://laracasts.com/lessons/http-requests-with-guzzle) -[Refactoring Fun](https://laracasts.com/lessons/refactoring-fun) - -### Other Links - -[PSR-4 autoloading support in Composer](http://seld.be/notes/psr-4-autoloading-support-in-composer) -[Vaprobash](https://github.com/fideloper/Vaprobash) - - -## Events - -**January 9, 2014 - Southlake, TX** -[Great Packages and What’s Ahead for 2014](http://www.meetup.com/laravel-dallas-fort-worth/events/154127522/) - -**January 14, 2014 - Berlin** -[Laravel Usergroup Berlin Meeting](http://www.meetup.com/laravel-berlin/events/152350192/) - -**January 15, 2014 - Columbus, OH** -[Enterprise Considerations for Laravel](http://www.meetup.com/Ohio-Laravel/events/155694442/) - -**May 15-16, 2014 - New York** -[Laracon US 2014](http://conference.laravel.com/) \ No newline at end of file diff --git a/issues/laravel-weekly-37.md b/issues/laravel-weekly-37.md deleted file mode 100644 index 6e2e9a5..0000000 --- a/issues/laravel-weekly-37.md +++ /dev/null @@ -1,75 +0,0 @@ -# Laravel Weekly #37 - -Bit late but here's issue #37! - -It seems like the new Laracon website is coming along nicely. Hopefully we can see it in its entirety soon! - -Also, [Laracasts](https://laracasts.com/) started an interesting series on SOLID this week. Definitely make sure to check that out! - -Thanks for reading and see you next week! - - -## News - -### Laracon Website Sneak-Peak - -[Laravel News](https://twitter.com/laravelnews) has shared a blog post with a sneak peak for [the upcoming Laracon website](http://laravelnews.tumblr.com/post/73584680318/focus-lab-have-been-hard-at-work-on-the-laracon). The new website design is being done by Focus Lab (http://focuslabllc.com/). - - -### Full IoC & Unit Testing with Laravel -[ -Taylor Otwell has posted an interesting screencast about [IoC and Unit testing in Laravel](http://taylorotwell.com/full-ioc-unit-testing-with-laravel/). - - -### New Features in PHP 5.6 - -[Bruno Skvorc](https://twitter.com/bitfalls) has posted a great overview of new features in [the upcoming PHP 5.6 release](http://www.sitepoint.com/new-features-php-5-6/). - - -### Rocketeer 1.0 Released - -[Rocketeer](https://github.com/Anahkiasen/rocketeer), a deployment package for PHP, by [Maxime Fabre](https://twitter.com/Anahkiasen) was released under its first stable version. - - -### Podcast #9 - Taylor Otwell and Jeffrey Way - -Tayor Otwell, Jeffrey Way, and Shawn McCool discuss Laravel 4.2, some recent PHP events, and answer listener questions. Listen to the podcast right [here](http://laravel.io/topic/70/podcast-9-taylor-otwell-and-jeffrey-way). - - -## Resources - -### Articles - -[Building a Customer Management App Using AngularJS and Laravel](http://net.tutsplus.com/tutorials/php/building-a-customer-management-app-using-angularjs-and-laravel/) -[Manipulating and serving images on the fly with Laravel – Part 1](http://creative-punch.net/2014/01/manipulating-serving-images-fly-part-1/) -[Laravel 4 packages showcase #2](http://creative-punch.net/2014/01/laravel-4-packages-showcase-2/) -[Response: Don't Use Facades](http://taylorotwell.com/response-dont-use-facades/) -[HHVM, Nginx and Laravel](http://fideloper.com/hhvm-nginx-laravel) - -### Applications and Packages - -[Menu manager like Wordpress using Laravel and Nestable](https://github.com/msurguy/laravel-shop-menu) - -### Laracasts - -[Testing HTTP Requests](https://laracasts.com/lessons/testing-http-requests) -[Test DBs in Memory](https://laracasts.com/lessons/test-databases-in-memory) -[Logs, Queries, Timelines](https://laracasts.com/lessons/logs-queries-timelines) -[Single Responsibility](https://laracasts.com/lessons/solid-single-responsibility-principle) -[Open-Closed](https://laracasts.com/lessons/open-closed-principle) -[Liskov Substitution](https://laracasts.com/lessons/liskov-substituion-principle) -[Interface Segregation](https://laracasts.com/lessons/interface-segregation) - -### Other Links - -[Instant Simple Botting with PHP](https://medium.com/tech-reviews/cb339ed80404) -[Guzzle – PHP HTTP Client](http://www.sitepoint.com/guzzle-php-http-client/) - - -## Events - -**January 29, 2014 - Brussels** -[January Laravel Meetup](http://www.meetup.com/Laravel-Brussels/events/148656682/) - -**May 15-16, 2014 - New York** -[Laracon US 2014](http://conference.laravel.com/) \ No newline at end of file diff --git a/issues/laravel-weekly-38.md b/issues/laravel-weekly-38.md deleted file mode 100644 index ec4208e..0000000 --- a/issues/laravel-weekly-38.md +++ /dev/null @@ -1,63 +0,0 @@ -# Laravel Weekly #38 - -Small update this week. I've been rather busy over the past couple of weeks so I missed a few links and resources in last week's issue, sorry about that! I'd also like to thank everyone who has contributed to this newsletter so far. You've all been a great help! - -Ow and by the way: I'll be at [PHPBenelux 2014](http://conference.phpbenelux.eu/2014/) this friday and saturday. [Hit me up at twitter](https://twitter.com/driesvints) if you want to hang out! - -Thanks for reading! - -## News - -### Protobox - -[Protobox](http://getprotobox.com/) allows you to select modules for provisioning your virtual machine. The website generates a YAML file that protobox uses when provisioning a new virtual machine with vagrant. - -Check out the full list of modules right [here](https://github.com/protobox/protobox#modules). The website itself is also built on Laravel. You can check out its source code over [here](https://github.com/protobox/protobox-web). - -### Geocodio - -[Geocodio](http://geocod.io/) is a RESTful API service that turns any US street address into map coordinates. You can geocode any US address with 90%+ accuracy (defined as results within 1 mile). - -The service starts at 2500 free geocodes a day and after that, paid geocodes for $.001 each which is ridiculous cheap! Did I already mention the project's built on Laravel? - - -## Resources - -### Articles - -[Mocking models using Mockery partial mocks](http://beta.laravel.io/article/01-18-2014-mocking-models-using-mockery-partial-mocks-anlutro) -[Basic Seeding with Laravel](http://beta.laravel.io/article/01-15-2014-basic-seeding-with-laravel-garbee) -[Manipulating and serving images on the fly with Laravel – Part 2](http://creative-punch.net/2014/01/manipulating-serving-images-fly-laravel-part-2/) -[Laravel 4 Embedded Systems](https://medium.com/laravel-4/8b18feccd3c) -[Re-organising Laravel applications with PSR-4](http://codinghobo.com/re-organising-laravel-applications-with-psr-4/) - -### Applications and Packages - -[SlimFacades](https://github.com/itsgoingd/slim-facades) -[SlimServices](https://github.com/itsgoingd/slim-services) -[PaasACL](https://github.com/excellentingenuity/PaasACL) -[Database Exporter](https://github.com/nWidart/DbExporter) -[Tiny](https://github.com/zackkitzmiller/tiny-php) - - -### Laracasts - -[Dependency Inversion](https://laracasts.com/lessons/dependency-inversion) -[Cache, Cookie, Session](https://laracasts.com/lessons/sessions-cookies-caching) -[Gulp This](https://laracasts.com/lessons/gulp-this) -[All About Filters](https://laracasts.com/lessons/all-about-filters) - - -## Events - -**January 23, 2014 - Fishers, IN** -[Skype Chat with Taylor Otwell, creator and curator of Laravel](http://www.meetup.com/Laravel-Modern-Web-Apps-in-Carmel-Fishers-Indianapolis/events/158395212/) - -**January 29, 2014 - Brussels** -[January Laravel Meetup](http://www.meetup.com/Laravel-Brussels/events/148656682/) - -**February 6, 2014 - Fort Worth, TX** -[Rapid Development Environments with PuPHPet](http://www.meetup.com/laravel-dallas-fort-worth/events/158539822/) - -**May 15-16, 2014 - New York** -[Laracon US 2014](http://conference.laravel.com/) diff --git a/issues/laravel-weekly-39.md b/issues/laravel-weekly-39.md deleted file mode 100644 index 96cd2a0..0000000 --- a/issues/laravel-weekly-39.md +++ /dev/null @@ -1,75 +0,0 @@ -# Laravel Weekly #39 - -## News - -### New Laravel IO Website - -[The new Laravel IO website](http://laravel.io/) is finally launched! Thanks to all the beta testers for helping out! For now, only the new forums are launched. The articles will be back very soon. The old forums will stay online but will be read-only as of the 7th of February. [A brand new pastebin](http://laravel.io/bin) was also released. - -[Check out this post](http://laravel-news.com/post/74778201800/what-is-coming-to-laravel-io) by [Laravel News](https://twitter.com/laravelnews) for a great overview on everything that's new. - - -### Final Call for Speakers for Laracon! - -Laracon is entering its [final Call for Speakers](https://twitter.com/laravelphp/status/428919253853413377) for Laracon. Make sure to send in your talk proposals because time is running out! - -Speaking of Laracon, I've heard that [42% of the tickets are already sold](https://twitter.com/ianlandsman/status/428709847044222977). And the real conference website and full line-up of speakers hasn't even been put up yet. Crazy! - -### Vote for Laravel at the NET Awards! - -It's that time of the year again folks. While last year we had big competition from other Open-Source projects like Bootstrap this year we have a chance to win! Laravel has really grown in the past year and we can show that by voting for it as the Open-Source project of the year. We'll still have to handle tough competition from other projects like Grunt, Bower, Angular and others but we stand a fair chance. [Go vote for Laravel here!](https://thenetawards.com/vote/open-source/) - -Also, you may want to vote for [Bootsnipp](http://bootsnipp.com/) as [Side Project of the year](https://thenetawards.com/vote/side-project). It's built by prominent community members [Maksim Surguy](https://twitter.com/msurguy) and is built on Laravel. - -### Laravel User Group Munich - -There's a new Laravel user group for developers living in Munich or nearby cities. They're planning their first meetup tbh. soon. Check out [their Meetup page](http://www.meetup.com/laravel-munich/) for more info. - -### Elivio - -Elivio is a widget and SaaS that attempts to allow site owners to provide ‘contextual support’ to their users, and provide insights on user behaviour. By simply adding in a javascript snippet, they can manage the tips from an admin panel. When a user is using their website, they can click on certain items to get more information about that item to help them move forward. The idea is that the user can keep moving, rather than have to leave to an FAQ or support system to try and find a solution. - -Check out their [website](http://www.elev.io/)! - - -## Resources - -### Articles - -[Laravel 4 File-Based CMS](https://medium.com/laravel-4/4bca98a74f4d) -[Node.js vs Laravel](http://thesimplesynthesis.com/post/node-js-vs-laravel) -[Top 5 trends of Laravel’s rise in 2014](http://maxoffsky.com/code-blog/top-5-trends-laravels-rise-2014/) -[Laravel Application Development Blueprints](https://medium.com/tech-reviews/b47f7e5fb041) -[Wardrobe CMS - Blogging made simple](http://www.woazala.com/post/wardrobe-cms-blogging-made-simple) -[Book Review - Implementing Laravel](http://laravel-news.com/post/74300436627/book-review-implementing-laravel) -[Getting started with Laravel](http://www.codeforest.net/getting-started-laravel) - -### Applications and Packages - -[Imager](https://github.com/tippingcanoe/imager) -[Firewall](https://github.com/antonioribeiro/firewall) -[Fakable](https://github.com/Anahkiasen/fakable) -[BrainSocket](http://brainsocket.brainboxmedia.ca/) - -### Laracasts - -[URL Shortener: Part 1](https://laracasts.com/lessons/build-a-url-shortener-part-1) -[URL Shortener: Part 2](https://laracasts.com/lessons/build-a-url-shortener-part-2) -[Deploying Your App](https://laracasts.com/lessons/deploying-your-app) -[PSR-4 Autoloading](https://laracasts.com/lessons/psr-4-autoloading) -[Laravel + Gulp](https://laracasts.com/lessons/laravel-and-gulp) -[Sorting Tabular Data](https://laracasts.com/lessons/laravel-and-gulp) - -### Other Links - -[PHP The Right Way: The Book](http://www.sitepoint.com/php-right-way-book/) -[Arbitrary Precision and Big Numbers in PHP](http://www.sitepoint.com/arbitrary-precision-big-numbers-php/) - - -## Events - -**February 6, 2014 - Fort Worth, TX** -[Rapid Development Environments with PuPHPet](http://www.meetup.com/laravel-dallas-fort-worth/events/158539822/) - -**May 15-16, 2014 - New York** -[Laracon US 2014](http://conference.laravel.com/) \ No newline at end of file diff --git a/issues/laravel-weekly-8.md b/issues/laravel-weekly-8.md deleted file mode 100644 index 74e9190..0000000 --- a/issues/laravel-weekly-8.md +++ /dev/null @@ -1,59 +0,0 @@ -# Laravel Weekly #8 - -I changed the name again! Will this be the last time? Probably not! - -I'll be tweeting these posts with #laravelweekly from now on. I also have a couple of ideas in mind for future editions for these posts. Stay tuned :) - -Again, if you'd like to see your resources, packages, articles, you name it in these posts, just mention them to me on twitter or email me. - -## What Happened To The StackExchange Proposal? - -In short: [it got rejected](http://discuss.area51.stackexchange.com/questions/10046/no-really-what-part-of-this-isnt-already-on-topic-for-stack-overflow). The people at [Stack Exchange](http://stackexchange.com/) didn't feel that a separate site for Laravel was needed at this time and pointed out that StackOverflow already provided a platform that we could use. - -Now this isn't a bad thing. Like they said, we can use StackOverflow for now which is still a great platform to ask questions. Just tag your posts with #laravel. It won't be a separate Laravel platform but it basically still is the same thing. - -Thanks to everyone who voted and helped out, we really appreciate it! - -## Laravel Social Groups - -There are a number of social groups out there for Laravel. Here's a short list: - -- [Facebook](https://www.facebook.com/groups/LaravelCommunity/) -- [Google+](https://plus.google.com/communities/106838454910116161868) -- [LinkedIn](http://www.linkedin.com/groups/Laravel-PHP-Framework-4419933) -- [Reddit](http://www.reddit.com/r/laravel/) - -## Laravel 4: Maintenance Mode - -https://twitter.com/laravelphp/status/330080201084121088 - -A recent addition in Laravel 4 beta 5 is the ability to set your application into maintenance mode through Artisan. This gives you a nice way to upgrade or tinker with your app while cutting off user interaction to it. - -## Laravel 4: Soft Delete - -https://twitter.com/laravelphp/status/330328333332127745 - -Soft deleting a record means that you're deleting a record without actually removing it from the database. This can be handy in quite some cases where you have relationships defined which you don't want to lose after deleting a record. - -You can learn more about soft deleting records at [the Laravel 4 docs](http://four.laravel.com/docs/eloquent#soft-deleting). - -## Laravel 4: Generate Controllers In Subdirs - -https://twitter.com/jeffrey_way/status/330347895742160897 - -When generating controllers through Artisan, you can now generate them inside subdirs by specifing a subdir or namespace before your controller name. When specifing a namespace, the namespace will be added automatically to the file. - -## Resources - -- [Global site messages in Laravel 4](http://toddish.co.uk/blog/global-site-messages-in-laravel-4/) by [Todd Francis](https://twitter.com/toddish) -- [Custom Artisan Commands And You](https://tutsplus.com/course/custom-artisan-commands-and-you/) by [Tutsplus](https://tutsplus.com) (Partialy Paid) -- [Laravel 4 Quick Tip: Custom Error Pages](http://driesvints.com/blog/laravel-4-quick-tip-custom-error-pages/) by [Myself](https://twitter.com/driesvints) -- [Laravel 4 + IronMQ Push Queues = Insane Goodness](http://blog.iron.io/2013/05/laravel-4-ironmq-push-queues-insane.html) by [IronMQ](http://www.iron.io/) - -## Packages - -- [Basset 4.0 (pre-beta)](http://jasonlewis.me/code/basset/4.0) by [Jason Lewis](https://twitter.com/jasonclewis) -- [Handling Proxies in Laravel 4](http://fideloper.com/laravel-4-trusted-proxies) by [Chris Fidao](https://twitter.com/fideloper) -- [Laravel Test Helpers (Beta)](https://github.com/JeffreyWay/Laravel-Test-Helpers) by [Jeffrey Way](https://twitter.com/jeffrey_way) -- [Laravel Breadcrumbs](https://github.com/davejamesmiller/laravel-breadcrumbs) by [Dave James Miller](https://twitter.com/DaveJamesMiller) -- [Async Database Logs for Laravel 4](https://github.com/conradkleinespel/database-log-laravel4) by [Conrad Kleinespel](https://twitter.com/conradktweets) \ No newline at end of file diff --git a/issues/laravel-weekly-9.md b/issues/laravel-weekly-9.md deleted file mode 100644 index ebfa93a..0000000 --- a/issues/laravel-weekly-9.md +++ /dev/null @@ -1,62 +0,0 @@ -# Laravel Weekly #9 - -Another week, another issue. I've got something special in mind for #10. Might be that next week's issue will be in a slightly different format than the one you're reading now. Very excited about that. - -Laravel 4's release date has been set for next week Tuesday. We can almost start using it to build applications which will be stable for production. - -There's a lot of cool stuff happening for Laravel in the upcoming weeks. I'll try to keep you guys up-to-date on everything that's happening in Laraland. - -## Laravel 4 Release Date: May 28 - -https://twitter.com/laravelphp/status/335027072101675008 - -Mark your calendars! Laravel 4 will be released on May 28. It's been a long road down the beta but v4.0 is almost upon us. You can almost start to port your L3 apps to L4 and get them ready for production! - -## Laravel 4 T-shirts - -https://twitter.com/laravelphp/status/332838120041115648 - -[The official Laravel 4 T-shirt](http://teespring.com/laravel) has arrived! You can get them in various sizes (XS, S, M, L, XL, 2XL and 3XL) and various colors (Soft Cream, Black, White). - -The campaign will end in 12 days so get them while they're hot! - -## Laravel Testing Decoded Release Date - -https://twitter.com/jeffrey_way/status/332578079832686594 - -Seems like we can expect Jeffrey's book to be released on May 28 as well. That's going to make that day even more awesome. - -## Avatars For The New Laravel Website - -https://twitter.com/laravelphp/status/334059176185720832 - -I don't know if they reached their goal yet but the folks at Laravel still need some avatars for the new website. Send in yours by replying to the tweet above. - -## New Laravel Wiki Skin - -https://twitter.com/jasonclewis/status/336470322339528704 - -[The Laravel wiki](http://wiki.laravel.io/) has got a fresh look! - -## Laravel Gittip Community - -https://twitter.com/msurguy/status/334052363075715074 - -[Maksim Surguy](https://twitter.com/msurguy) started [a Laravel Gittip community](https://www.gittip.com/for/laravel/). It still needs about 138 more members before it gets accepted. - -Now, [what is Gittip exactly?](https://www.gittip.com/about/) Gittip allows you to give small weekly cash gifts to people who you want to support for their efforts. For example, you could tip Taylor $1 a week for his work on Laravel. It's a small amount but when a lot of people do this it could help him a lot to continue his work. And this goes for everyone who's doing free open-source work. - -## Resources - -- [Laravel Webserver Configurations](https://github.com/daylerees/laravel-website-configs) by [Dayle Rees](https://twitter.com/daylerees) -- [Practical Laravel – Using Cron Jobs in Laravel](http://maxoffsky.com/code-blog/practical-laravel-using-cron-jobs-in-laravel/) by [Maksim Surguy](https://twitter.com/msurguy) - -## Packages - -- [Role Model - validation for Eloquent models](https://github.com/betawax/role-model) by [Holger Weis](https://twitter.com/betawax) -- [Anvard - HybridAuth package for Laravel 4](https://bitbucket.org/atticmedia/anvard) by [Atticmedia Ltd](http://atticmedia.com/) - -## Talks - -- 21/05: [An Introduction To Eloquent](http://phpneintrotoeloquent-eorg.eventbrite.com/) by [Keith Pincombe](https://twitter.com/pincombe) -- 23/05: [Laravel 4 & Symfony](http://portland2013.live.symfony.com/speakers#session-875) by [Taylor Otwell](https://twitter.com/taylorotwell) \ No newline at end of file diff --git a/laravel-weekly.png b/laravel-weekly.png new file mode 100644 index 0000000..b2373de Binary files /dev/null and b/laravel-weekly.png differ diff --git a/logo.png b/logo.png deleted file mode 100644 index ad126df..0000000 Binary files a/logo.png and /dev/null differ diff --git a/newsletter.html b/newsletter.html deleted file mode 100644 index ef7cb7d..0000000 --- a/newsletter.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - - - *|MC:SUBJECT|* - - - - - - - - - - - - - - - -
-
- Is this email not displaying correctly? View it in your browser. -
-
- - - - - -
- - - - - - - - - - - - - - - - - -
-

- Laravel Weekly #23 -

- -
-

- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, - quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo - consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse - cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non - proident, sunt in culpa qui officia deserunt mollit anim id est laborum. -

- -

Thanks for reading!

-
- -

- News -

- -
-

Some important news item!

- -
-

- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. -

-
-
- -
-

- Quick Tip -

- -
-

- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. -

-
-
- -

- Resources -

- - - -

- Events -

- -
-
September 12, 2013 - Fishers, IN
- -
-
-
-
-

- We want you...! -

- -

- ...to send us your articles, packages, meetups, screencasts, whatever you like to be featured in the next Laravel Weekly! Send all your details to hello@laravelweekly.com -

-
-
-

WebsiteLaravel IOGithub

-
-
- -
-
-
- - - - -
- - - - -
- This email was sent to *|EMAIL|* -
- why did I get this?    unsubscribe from this list    update subscription preferences -
- *|LIST:ADDRESSLINE|* -
-
- *|REWARDS|* -
-
-
- - - \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..eac39c9 --- /dev/null +++ b/style.css @@ -0,0 +1,96 @@ +/* General +---------------------------------------------------------*/ + +body { + color: #7D787F; + background-color: white; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 1.2em; + line-height: 1.6em; +} + +a { + color: #D58276; + text-decoration: none; +} +a:hover { + text-decoration: underline; +} + +strong { + color: #D58276; + font-weight: bold; +} + +hr { + background-color: #ccc; + border: none; + height: 1px; +} + +.text-center { + text-align: center; +} + +h2 { + color: #D58276; + text-align: center; +} + +/* Container +---------------------------------------------------------*/ + +#container { + margin: 0 auto; + max-width: 720px; +} + +#container img { + display: block; + margin: 0 auto; + max-width: 100%; +} + +/* Form +---------------------------------------------------------*/ + +#mc_embed_signup .mc-field-group label { + color: #7D787F; + font-size: .9em; + font-weight: bold; +} +#mc_embed_signup .mc-field-group input { + background-color: #EEEEEE; + border: 2px solid #EBBDB5; + color: #333; + font-size: 0.8em; + padding: 10px 2%; + width: 96%; +} + +#mc_embed_signup .button { + background-color: #D58276; + margin-top: 20px; +} + +/* Past Issues +---------------------------------------------------------*/ + +#past-issues { + width: 100%; +} +#past-issues th { + text-align: left; +} +#past-issues tr th:last-child, +#past-issues tr td:last-child { + text-align: center; +} + +/* Footer +---------------------------------------------------------*/ + +.footer { + font-size: .8em; + text-align: center; +}