questions/web-development/laravel/page/3
Hello @kartik, DB::raw() is used to make arbitrary SQL ...READ MORE
Hii, For Laravel 5, In the tests directory there should ...READ MORE
Hello @kartik, The only thing that you have ...READ MORE
I just want to add @niroj answer Use ...READ MORE
Hii @kartik, Laravel intercepts all input. If you're ...READ MORE
Hello, You could create a custom Laravel directive. You ...READ MORE
Hello @kartik, Try this: return Redirect::to('admin/users/create') ...READ MORE
Hello @kartik, cache:clear artisan command does calls flush function on current ...READ MORE
Hii @kartik, Extend Blade by creating a push once directive as ...READ MORE
Hello @kartik, You'll need to use the web middleware if ...READ MORE
Hello @kartik, The issue is route parameters aren't ...READ MORE
Hii, Try this: $response->getSession()->get("errors") And from there you can check ...READ MORE
Hello @kartik, When you run php artisan config:cache, Laravel ...READ MORE
Hello @kartik, Just try this in your view ...READ MORE
Hii, You need to pass it using use. Cache::remember('thumb-'.$hash, 15, ...READ MORE
Hii, I got this problem too. I have ...READ MORE
Hello @kartik, You can simply use the abort() helper. (Or App::abort()) public ...READ MORE
Hello @kartik, Using the response helper. use Illuminate\Http\RedirectResponse; $response = $next($request); $response = ...READ MORE
Hello @kartik, First arrange for the middleware to ...READ MORE
Hello @kartik, You can make a route specifically ...READ MORE
Hello @kartik, You need to change "server.php" to ...READ MORE
Hello @kartik, find this line in php.ini : ;extension=soap then ...READ MORE
Hello @kartik, One of the methods it provides ...READ MORE
Hello @kartik, First you create a MySQL table ...READ MORE
Hello @kartik, This can be done with the ...READ MORE
Hello @kartik, Use: bool is_a ( object $object ...READ MORE
Hello @kartik, You can use if(DB::connection()->getDatabaseName()) { echo ...READ MORE
Hello @kartik, First, you have to create relation ...READ MORE
Hello @kartik, Global Scope is available: class Article extends Post { ...READ MORE
Hey, As a newbie it is most common ...READ MORE
Hello @kartik, Assigning the ASP.NET Session Variable using ...READ MORE
Hello @kartik, lists() turns the resulting collection into an ...READ MORE
Hello @kartik, Use: sudo php artisan serve --host 192.168.1.101 ...READ MORE
Hello @kartik, You could try this: public function testStoreAction() { ...READ MORE
Hello @kartik, If you have the token in ...READ MORE
Hello @kartik, set MAIL_ENCRYPTION= in .env file. and it worked fine ...READ MORE
Hello @kartik, You can simply use Hash::check() method eg: if(Hash::check('plain-text', $hashedPassword)) ...READ MORE
Hello @kartik, If it isn't already there, create ...READ MORE
Hello @kartik, Assuming you're using jQuery... create a route ...READ MORE
Hello @kartik, add <meta> tag with the token to the ...READ MORE
Hello @kartik, Code row updates like this: ...->update( array( ...READ MORE
Hello @kartik, The simplest way is just to ...READ MORE
Hello @kartik, There are date helpers available in ...READ MORE
Hello @kartik, For Guzzle 5, 6 and 7 you do ...READ MORE
Hello @kartik, This will work: ...READ MORE
Use two blade page,one for create and other ...READ MORE
Hello @kartik, You can use an array in ...READ MORE
Hello @kartik, You can specify custom error message ...READ MORE
Hello @kartik, You need to import your model ...READ MORE
Hello @kartik, It seems Laravel is trying to ...READ MORE
OR
Already have an account? Sign in.