questions/web-development/page/45
Hello @kartik, This worked for me: $cmd = "ping ...READ MORE
Hello @kartik, First Create seeder with artisan: php artisan make:seeder ...READ MORE
Hello @kartik, In my case this helped: $ export ...READ MORE
Hello @kartik, You can use req.headers["accept-language"] to get the language/locale ...READ MORE
Hello @kartik, If you have a collection you ...READ MORE
Hello @kartik, The way you handle your UI ...READ MORE
Hello, In Laravel 5.1 or higher you can ...READ MORE
Hii @kartik, When an included file returns something, ...READ MORE
Hello @kartik, go to this address : /app/Providers/AppServiceProvider.php and append ...READ MORE
Hii, You can also tell Laravel you want ...READ MORE
Hello @kartik, mime_content_type() is deprecated, so you won't ...READ MORE
Hello, Use this: var elm = document.createElement("div"); var jelm = ...READ MORE
Hello @kartik, You just have to include the safestring.class.php before ...READ MORE
Hello @kartik, Got the fix in css. td.disabledAnchor a{ ...READ MORE
Hello @kartik, If you have individual .js files, and you ...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, If you are using windows based ...READ MORE
Hello @kartik, Provided that your server is receiving ...READ MORE
Hello @kartik, You can calculate the distance in ...READ MORE
Hello, Submitting multi-value form fields, i.e. submitting arrays ...READ MORE
Hello @kartik, you need to set the blending ...READ MORE
Hello @kartik, in your view write : <script> var ...READ MORE
Hello, Php has a function for this, just ...READ MORE
There is a way of doing it ...READ MORE
Hello @kartik, If only using IPv4: use ip2long() to convert the ...READ MORE
Hello @kartik, Use: $url = preg_replace("(^https?://)", "", $url ); This ...READ MORE
Hello @kartik, Use: $(".myCheckbox").attr('checked', true); // Deprecated $(".myCheckbox").prop('checked', true); And if ...READ MORE
Hello @kartik, Since you're using XAMPP, uncomment the ...READ MORE
Hello @kartik, If you're already logged into the ...READ MORE
Hello @kartik, Since Laravel uses config files to ...READ MORE
Hello, You could create a custom Laravel directive. You ...READ MORE
Hello @kartik, Suppose, item_id is an integer identity column in items table ...READ MORE
Hello @kartik, To get action name, you need ...READ MORE
Hello @kartik, Delete an existing Model $user = User::find(1); $user->delete(); Deleting ...READ MORE
Hello, Never use 777 for directories on your ...READ MORE
Hello @kartik, Use window.open(): var win = window.open('http://edureka.co/', '_blank'); if (win) ...READ MORE
Hello, Try this code: preg_match('/[a-zA-Z]+<\/a>.$/', $lastgame, $match); print_r($match); Using / as a delimiter ...READ MORE
Hello @kartik, You can have jade include a ...READ MORE
Hello @kartik, Instead of using HTML comments (which have ...READ MORE
Hello @kartik, find this line in php.ini : ;extension=soap then ...READ MORE
Hello @kartik, As long as app.use(authChecker); is before app.use(app.router); it will get ...READ MORE
Hii, For Laravel 5, In the tests directory there should ...READ MORE
I'm making a command for my discord ...READ MORE
Hii, Use the --no-scripts flag to prevent artisan from executing ...READ MORE
Hello @kartik, To finish lodash#forEach method use return false; statement: _.forEach(oIncludedFileMap, function(aIncludedFiles, sKey) ...READ MORE
Hello @kartik, ou can use strtok to get string before ...READ MORE
Hey @kartik, First you have to go to ...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.