laravel-4.2 Questions
10
Solved
I am using recaptcha with my laravel application.
I just want to check recaptcha's response on form submit using jquery and stop user by alert that pleade validate captcha.
but , I could not stop...
Institutive asked 4/5, 2016 at 7:32
4
Solved
I have a Form field for an Image upload, which I open with 'files' => true, like so:
{{ Form::label('image', 'Image') }}
{{ Form::file('image') }}
And in my Controller I want to check if a File ...
Pru asked 19/9, 2014 at 8:7
5
I am using Laravel 4.2, with server side jQuery data-tables.
Package: https://github.com/Chumper/Datatable
How can I add custom sorting ?
like for columns of currency, time, etc
Sinfonia asked 9/10, 2015 at 10:59
4
I wanted to have the result with only the values not with the table column name in Laravel 4.2. For example,
$recs = DB::table('table_name')
->select('id', 'title')
->get();
the result i...
Alysaalyse asked 23/3, 2017 at 13:54
1
Laravel required_without is not working when I'm passing multiple fields.
This is my rules:
$rules = [
'startDate' => 'date|date_format:m/d/Y|required_without:customerId,purchaseId,orderId',
...
Ambivalence asked 12/1, 2018 at 13:42
2
Solved
I am working on a project using the Laravel 4.2 framework. I want to execute the command php artisan migrate but when I run this command it shows an error:
[PDOException]
SQLSTATE[42000]: Synta...
Curiosa asked 17/11, 2017 at 10:9
1
I am checking if the user logged in or not like this
Class LoginController extends BaseController {
public function getIndex(){
return View::make('login',array('eventname' => Request::segme...
Lesialesion asked 22/12, 2015 at 7:30
1
Solved
I am trying to execute some custom artisan command from controller like
Artisan::call('php artisan MyCustomCommand');
but it works fine when I execute
php artisan MuCustomCommand from CLI.
...
Kozak asked 1/2, 2016 at 7:47
2
Solved
I am using laravel 4.2.
Lets say there is such class:
class BShopsController extends ShopsController
To fix this, I try to use name space lets say this:
namespace app\controllers;
and then i...
Goatsbeard asked 9/12, 2014 at 8:27
1
© 2022 - 2024 — McMap. All rights reserved.