Showing 10 of 2,055 results.

Configuration Overview

…erkat directory will created within your site's config directory with all the relevant configuration files after the site has been reloaded at least once. The following files will be created: 1 config 2 ├── meerkat 3 | ├── akismet.php 4 | ├──...

Preventing Duplicate Jobs | Using a Job Queue

…ation for this by running the following command from the root of your project: 1 php artisan social-media-image-kit:image-tasks-table Once the migration has been created you can add it to your database using the migration deployment process of...

Displaying Error Messages | Meerkat Forms

The following example demonstrates how to use this tag to create a new form. The example also shows you how to check if the form submission was successful or not, and how to display the errors generated by the internal validation systems. 1 {{...

Laravel 4: Working With Checkboxes and Input

…box, and come back to the page later (let's say that they checked a box saying a supplier or vendor was active) they would want to see that the checkbox was still checked. A third argument can be passed to the checkbox function. This third...

Laravel String Helper Function: quick_random

The quickRandom helper method is similar to random in that it generates a random string to a given $length . The quickRandom helper method does not rely on the OpenSSL extension, and generates its random strings from a pool of alpha-numeric...

Laravel 5: Generating CSRF Hidden HTML Fields With csrf_field

…owing HTML code can be greatly simplified using the function: 1 <! DOCTYPE html > 2 < html > 3 < head > 4 < title > CSRF Token Form Sample </ title > 5 </ head > 6 < body > 7 < form > 8 < input type = " hidden " name = " _token " 9 value = "...

Creating the Comment Form | Integrating Meerkat

…ode to the template code, you will see this on the page: Custom CSS was added to make the form elements easier to see for this article. We will address customized CSS classes, HTML markup, and everything else in a later guide. Our modified...