My controller code is like this : public function store(CreateUserRequest $request) { $input = $...
My view is like this : <li class="{{ Request::is('users*') ? 'active' : '' }}">...
I get the adminlte from here : https://github.com/InfyOmLabs/adminlte-generator In here : https://gi...
My controller is like this : <?php namespace App\Http\Controllers; ... class UserController ex...
My javascript code is like this : $.getJSON("{{ url('/dropdowns/satkers') }}" + "/&qu...
@davicfg, I change like this : {!! Form::open(['route' => ['users.destroy', $user->id, $year],...
@saurabhd, it's not working. if the query in debug, the result : LEFT JOIN table3 AS c ON a.field2 =...
@astroanu, Thank you very much. It's working. @lagbox, Thank you
@endrureza, I do not use laravel. I use php native. I just wanted to use the hash laravel. So, my po...
The Laravel portal for problem solving, knowledge sharing and community building.