Laravel |
X

Congrats, You are Subscribed to Receive Updates.

Laravel

Install Laravel on Ubuntu, Lubuntu, & Elementary OS

Install Laravel on Ubuntu, Lubuntu, & Elementary OS
Install Laravel on Ubuntu,  Lubuntu,  Kubuntu and Elementary OS (Luna,  Freya, Loki). Installing Laravel 5 needs php 5. 6.  If your php is more than 5. 6 no problem.  Otherwise you have to upgrade your php with help of this tutorial. And you need Composer to install it. If you already installed composer than no problem. And If you want to install Composer click here to read ...

Installing Laravel 5 On Windows Xampp

Installing Laravel 5 On Windows Xampp
On my earlier Article I have described well about installing laravel 4.1 on xampp. The Same thing , we can use it for the laravel 5 and above versions. Let’s  move to see it as simple to install. You can check there for detailed installation of laravel. Install Composer on your windows , Than you can move to xampp htdocs directory,  Than right click on your ...

Laravel 5 Installation on Wamp

Laravel 5 Installation on Wamp
Laravel 5 Installation on Wamp is quite similar to installation of xampp. All you need is to get Composer . Let’s see in detail.  You need to install Composer you can download composer from Here. Download and install it on your windows. Its similar to other software installation. Now, your php needs to enable few extensions which are here. php_openssl, php_curl, php_socket. you can check it like this ...

How to use Raw MySQL queries in Laravel

How to use Raw MySQL queries in Laravel
How to use Raw MySQL queries in Laravel. Many developers have implementation problem with MySQL queries in Laravel and also, Laravel doesnot support the whole features of SQL queries. So we have one base function to use our Raw queries inside the function. Which is even better for new developers and those who have problem with Laravel functions. By the way it protects the SQL ...

Multiple Column Sorting on Laravel 4

Multiple Column Sorting on Laravel 4
Multiple Column Sorting on Laravel 4.  In PHP 4 above, we can use direct MySQL  queries to sort based on two columns, But we can’t use the direct MySQL Query here. The following query explains you more, $kv_query = "SELECT * FROM kvcodes_table ORDER BY Name DESC, id ASC"; $kv_result = mysql_query($kv_query); But the above code does not help you to use in laravel, Here ...

Create Simple Website Backend With Laravel 4

Create Simple Website Backend With Laravel 4. Lets start making our website backend with Laravel 4, begin from the necessary things. There is an basic tutorial for the laravel installation. You can get more ideas for the installation process. Sorry for the inconvinence the full article will be comming soon.

Laravel Asset Management

Laravel Asset Management
Laravel Asset Management is the custom and necessary things to add your Custom CSS and JS files into the Laravel Working Area. We are going to discuss about the ways to add Assets into it. In laravel 3, you can use the Asset method to add styles and javascripts into it. Just use the following line of codes. Asset::add('kv_js', 'js/kv_js.js'); Here it accepts two parameters, 1. ...

Install Laravel Without Composer

Install Laravel Without Composer
Install Laravel Without Composer is one of a greater method for the beginners not like to operate composer, Its more Convenient to the Beginners . Everytime, you don’t need to get a copy from Repository using composer or command line.  Here the alternative method is simple, You can download a copy of the laravel from Laravel Git Source Here. Here only thing is vender folder ...

Laravel Requires the Mcrypt PHP Extension

Laravel Requires the Mcrypt PHP Extension
Laravel Requires the Mcrypt PHP Extension for 256-bit encryption/decryption. It is  a encryption Algorithm,Supports many encryption algorithms. Here is the list of supported encryption’s. DES, TripleDES, Blowfish (default), 3-WAY, SAFER-SK64, SAFER-SK128, TWOFISH, TEA, RC2 and GOST in CBC, OFB, CFB and ECB cipher modes. While Installing Laravel on your local machine, you need to enable Mycrypt to perform authentications.   When you get an error ...

jQuery AJAX Uploader For Laravel

jQuery AJAX Uploader For Laravel
jQuery AJAX uploader for laravel  site and we are going to use simple HTML form and uploading image and show a preview on the upload form. Lets start write coding, First begin with Routes. Route::get('files', 'ImageController@getUploadForm'); Route::post('/files/image','ImageController@postUpload'); The above one help you to create the folder and path to images directory. Than move to the view file and create the form for the image uploader ...

Menu

Sidebar