questions/web-development/laravel/page/3
Hello @kartik, When you try to access a ...READ MORE
Hello, You can try to login the user ...READ MORE
Hello @kartik, First arrange for the middleware to ...READ MORE
Hello, normally override newQuery() for this. newQuery() is the method that Eloquent ...READ MORE
Hello, After update do: chmod -R gu+w storage chmod -R ...READ MORE
Hello @kartik, You can simply use the abort() helper. (Or App::abort()) public ...READ MORE
Hello @kartik, The validation feature built into Laravel ...READ MORE
Hello @kartik, If your model is filled with ...READ MORE
Hello @kartik, You can simply use Hash::check() method eg: if(Hash::check('plain-text', $hashedPassword)) ...READ MORE
Hello @kartik, First, you'll need to find the ...READ MORE
Hello @kartik, Try this: return Redirect::to('admin/users/create') ...READ MORE
Hello, You need to customize the request $data = ...READ MORE
Hello, To do the same as mail() PHP ...READ MORE
Hello @kartik, good way to run an asynchronous ...READ MORE
Hii @kartik, Laravel intercepts all input. If you're ...READ MORE
Hello @kartik, in Laravel's inbuilt auth system, the ...READ MORE
Hello @kartik, One of the methods it provides ...READ MORE
Hello @kartik, You can use: Request::url() to obtain the current ...READ MORE
Hii, Filters can be passed parameters, like the ...READ MORE
Hii, Try this command: php -S localhost:8000 -t public Then ...READ MORE
Hello @kartik, By default, blade doesn't have @break and @continue which are ...READ MORE
Hello @kartik, You can use request object: request()->server('SERVER_ADDR'); Or you ...READ MORE
Hello @kartik, You can't do it by default ...READ MORE
Hello @kartik, The "Killed" message usually means your ...READ MORE
Hello @kartik, You need to give the full ...READ MORE
Hello @kartik, Laravel migration generator for your existing ...READ MORE
Hello @kartik, You call it by http://localhost:8080/api/test ...READ MORE
Hello @kartik, Your response must return some sort ...READ MORE
Hello, Try this code: // option one: 'in' takes ...READ MORE
Hello @kartik, Simply,we can use Model::whereNotNull('sent_at'); Or Model::whereRaw('sent_at is not null'); Thank ...READ MORE
Hello @kartik, Use: sudo php artisan serve --host 192.168.1.101 ...READ MORE
Hello @kartik, DB::raw() is used to make arbitrary SQL ...READ MORE
Hello @kartik, You can generate parentheses by passing ...READ MORE
Hello @kartik, This can be done with the ...READ MORE
Hello @kartik, You'll need to adjust your exception ...READ MORE
Hello @kartik, Send data like this. $data = [ ...READ MORE
Hello @kartik, Try something like this: <?php $max = 100; $total ...READ MORE
Hello @kartik, Restart Beanstalk: sudo service beanstalkd restart ...READ MORE
Hello @kartik, You can simply use: Artisan::output() READ MORE
Hello @kartik, You have a few ways of ...READ MORE
Hello @kartik, lists() turns the resulting collection into an ...READ MORE
Hello @kartik, First Create seeder with artisan: php artisan make:seeder ...READ MORE
Hello @kartik, If you have a collection you ...READ MORE
Hello, In Laravel 5.1 or higher you can ...READ MORE
Hii, You can also tell Laravel you want ...READ MORE
Hello @kartik, Try to use Form::button instead of ...READ MORE
Hello, Laravel allow use of their library method that ...READ MORE
Hello @kartik, You can specify custom error message ...READ MORE
Hello @kartik, Using the response helper. use Illuminate\Http\RedirectResponse; $response = $next($request); $response = ...READ MORE
Hello @kartik, You can calculate the distance in ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.