
Search In
This blog is about how to create water reflection image.
1. Create android Project.
2. Activity layout file is look like :-
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
As we know Every DB table has a corresponding "Model" that is helpful to interct with the table.
By using Eloquent we can implement query using MODEL NAME.
The basic query using Eloquent ORM in laravel 4.x are
All Query:
$users = User::all();
In any project routing plays an important role.In laravel 4.x we will define our routes in routes.php which is
in app/routes.php. In laravel 4.x the basic routes consist of a URL and a clousure callback.
Example: Basic Get Route
Route::get('/', fu
Middleware is one of the important part of any application. The code which we want to stick between request/response life cycle which is not necessary part of our application logic. That is called as middleware.
Let take a example to know more about
We have to follow few steps to integrate twilio with laravel 4.x.
Step 1:
First we have to install package. For this we will add below code on composer.json.
"require": {
"dtisgodsson/twilio": "dev-master"
}
Step 2:
Then we will update our
In app development their are many steps where we have to hang on for a while, like we are waiting for the server response, or the loading of assets or any other function to complete. Sometime to manage these such task we need a loading screen, which
It is very painful to use pagination in other framework but In Laravel 5.x it is very easy to implement pagination. By using paginate method on the query builder we will takes care of setting the proper limit and offset based on the current page bein
Migrations has very important role in Laravel 4.x. By using Migrations we can create and update our database and by using Migration we can save time because it will create schema by using single command.
Migrations Creation:
In Laravel 4.x Migratio
SVG is used for graphs like Pie charts, 2D graphs in X,Y coordinate system. It stands for Scalable Vector Graphics and it is a method for describing graphics in xml and then xml is rendered by SVG viewer.
Using SVG in HTML5:We can use SVG by <svg&
In Laravel 4.x we have many facility to use query in a easy way. We will also run raw query in laravel 4.x. Laravel 4.x also provide of using “order by” query using Eloquent ORM.
We can easily understand this by seeing the example of order by:
E
