Laravel: my first framework. Chapter 3 – Routing

The following content is the third chapter of my new e-book titled “Laravel: my first framework“. This writing is copyright by Maksim Surguy. Unauthorized copy and distribution of this material is prohibited. Chapter 3. Routing This chapter covers Basics of routing Passing parameters to routes Route filters Grouped and named routes Redirects When you come to […]

Read More

In-place Pagination using Backbone.js and Laravel (shop tutorial #4)

This tutorial is one more addition to my “Building a shop with Laravel” tutorial series. In the previous tutorial, I showed you how to implement very nice “Smart search” feature using Selectize.js plugin to make user experience a bit nicer: https://maxoffsky.com/code-blog/laravel-shop-tutorial-3-implementing-smart-search/ When I develop web applications, I care a lot about the user experience and […]

Read More

Releasing Admin panel for SEO polymorphic relationships using Laravel

A few days ago I posted a detailed tutorial on how to use Laravel’s polymorphic relationships to simplify management of SEO data in Laravel web applications. You can read that tutorial here: https://maxoffsky.com/code-blog/using-polymorphic-relationships-of-laravel-for-seo-content/ I have also promised that I will release a small admin panel to manage that kind of data and today I will do […]

Read More

Integrating Stripe into Laravel 4 application

In this short post I will explain how you can get the basic Stripe checkout to work inside of Laravel 4 application. Stripe allows you to take credit card payments painlessly and integration cannot be simpler than this. I have previously posted on Stripe integration into Laravel 3 application, to understand more how Stripe payments […]

Read More

Building RESTful API in Laravel – part 3 – Integration with BackboneJS

For those of you who haven’t been following this blog – I am posting a short series of tutorials that guide you through creating a simple API in Laravel 3 and integrating it with a client application – in this case TodoMVC BackboneJS application (see screenshot below). Part 1 of the tutorial is here : https://maxoffsky.com/code-blog/building-restful-api-in-laravel-start-here/ […]

Read More