Friday, September 2, 2016

laravel Yajra error -- DataTables warning request unknown parameter id for row 0


1.https://laracasts.com/discuss/channels/eloquent/yajra-laravel-datatables?page=1


2. My reply
For "DataTables warning request unknown parameter id for row 0" please check UsersController is created or not.

If fix the error after I create the UsersController as below.
<pre>
<code class="hljs php">
php artisan make:controller UsersController --plain
</code>
</pre>

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.