Laravel CRUD And CMS

Built Backend Administrator for real Internet / Intranet web application Easier , Faster , Proffessional

Patch version LCRUD 2.0

Bellow is list minor issue on version 2.0 . If you want to fix it , follow this intruction : 1. Set default group for new user registrant ( March , 29 2014 )   file location :  protected/app/controllers/UserController.php  change line 37: $authen->active = '0'; /* set new users as group 3 */ $authen->group_id = '3'; /* end add code */ $authen->save(); 2....

Master Detail ( Laravel CRUD V2 )

In laravel CRUD and CMS v2 , master detail is feature for filtering rows detail by spesific field , ID from master table. Example you have rows master detail : The picture showing you where invoce table related to invoiceline table with 'InvoiceId' key relation. We used call it...

Formating rows on grid table

Now let's continue our tutorial , in this section we will guide you  to format rows grid at module generated by LCRUD v2. After created module , app creating folowing files  : protected app controllers YourmoduleController.php models Yourmodule.php views yourmodule index.blade.php form.blade.php view.blade.php  Now open index.blade.php with your favorite...

Working with MySQL Statement

This is heart of your module , from this query module are built up . remember if you want to display/show any field from table database , you need to include field on your query Query are splited to 3 part , SQL select , SQL Where , SQL Group Ilustration you have table customers...

Contact Form in Laravel ( LCRUD V2 )

In this tutorial , we will trying to make contact form using default page CMS from LCRUD v2. and send message to email Step 1 : Create new page Next Go to : Tools -> PageCMS -> Create New Copy following line code to your editor <div class="page-content"> <div...

Create Pages Using LCRUD v.2

Page CMS is new features in Laravel CRUD & Administrator version  2.0. This feature allow you to create page for frontend ( Public ) or Private. Before you begin creating pages , you have to know that LCRUD create file everytime you create pages , its mean you have full control to insert everything in content such tag php , css , javasript etc . Lets start : Go to Tools...

Create Simple CRUD ( Laravel 4.1 ) using LCRUD

Before you create module , you have to create table for module you will created . this app doest have feature to create table database , so you need phpmyadmin or other mysql tools for creating table...