Laravel ORM Part3
06 March 2014
We have discovered eloquent fetching methods in previous parts. It's time to fine tune query constraints as they add custom rules to our queries.
06 March 2014
We have discovered eloquent fetching methods in previous parts. It's time to fine tune query constraints as they add custom rules to our queries.
03 March 2014
We discussed later how to retrieve rows as objects and perform basic CRUD methods on them. Well,there are other good tasks that eloquent can perform. Let's discuss some of them and the rest will be discussed in subsequent parts.
03 March 2014
Laravel is a MVC PHP framework so it ships with its own ORM component called "Eloquent". Eloquent will take care of records retrieval for us. We don't have to write any SQL line. Let's explore eloquent basic CRUD methods.
02 March 2014
In Laravel Migrations Part1, I discussed how to create, run and update your migrations. It seems you need more and fortunately laravel still have many features to enhance your application migrations. Let's explore some of them.
02 March 2014
After building your database schemas ,You should be searching if laravel could give some help and run these schemas .Fortunately laravel migrations come in handy. Laravel use custom table to keep track of all migrations that have already run for your application. You know what ?Let's create a new migration.
01 March 2014
Shortcodes enable developers to embed content that would require alot of complicated tasks. With shortcodes ,you can enhance your posts with few characters.
28 February 2014
Once you database tables created ,it is a complex task to update these tables names and their structure .But i think laravel has another opinion .Let's get started and i will show you how laravel take care of you.
28 February 2014
Laravel `Schema` class have several methods that have varied uses. Let's take a look at them.
28 February 2014
Does your application need to store data in a database? Well let's see if laravel will give help. Laravel support MySQL, SQLite, PostgreSQL and SQL Server Platforms. Also it has very flexible abstraction layer. It can work with multi database applications. Secured as it escape value for you .Let's explore how laravel take care of you.
26 February 2014
Laravel like any php framework separate visual aspects of your application from business logic .Before we get started to explore templating syntax . I will show you how to render view files from a route or controller.