Saturday, August 27, 2016

$profile->getFillable()

$fillable[] = $profile->getFillable();
   
foreach ($fillable[0] as $key => $value ) {
    //var_dump("key=".$key);
    //var_dump("value=".$value);
    var_dump("value=".$request[$value]);   
}

Friday, August 19, 2016

To do list 19-Aug-2016

1. Data maintenance for 3 tables.

2. Explore on tabs.

3. Enhance flash message.

4. Dynamic label.

Sunday, August 14, 2016

git clone https://github.com/modestkdr/scrumwala.git

git clone https://github.com/modestkdr/scrumwala.git

Scrum/Agile Web App
Scrumwala is a scrum/agile web app that lets you create and manage projects with plan and work views, group issues in a project into sprints, set deadlines for issues, active sprints and projects and get reminders by email listing issues nearing deadline.

Saturday, August 13, 2016

insert update delete UserController.php

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Http\Requests;
use App\Http\Controllers\Controller;

class BloodPressureController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
 

Friday, August 12, 2016

To do list 13-Aug-2016

1. Understand more on laravel setup.

2. try npm install and gulp.

laravel-collections-php-arrays-on-steroids

1. https://scotch.io/tutorials/laravel-collections-php-arrays-on-steroids 
https://github.com/johnkariuki/laravel-collections.git

Laravel collections are one of the most powerful provisions of the Laravel framework. They are what PHP arrays should be, but better.
Laravel collections are what PHP arrays should be, but better.
In this tutorial, we will be going through a few tricks that may be handy when you are working with collections.