Laravel 5.6 Setup
posted 6 years ago
Step by step guide to Laravel 5.6 Installation. No long description, just a necessary script to get Laravel 5.6 started.
Laravel Error - TokenMismatchException in VerifyCsrfToken.php line 53 on form submisstion
posted 7 years ago
I get Token Mismatch Exception in Verify Csrf Token at line 53 when submitting the form on Laravel 5, Laravel 5.1, Laravel 5.2, Laravel 5.3, Laravel 5.4 or Laravel 5.5.
Gulp autoprefixer throwing ReferenceError: Promise is not defined
posted 8 years ago
When running Gulp on laravel root it throws : Gulp-autoprefixer throwing ReferenceError: Promise is not defined. To Fix add require('es6-promise').polyfill(); on top of your gulp.js and run npm install es6-promise
Laravel not automatically log me out after changing the session lifetime.
posted 8 years ago
If Laravel is not automatically logging you out, I bet it is because the expire_on_close is set to true. Change it to false and It will work.
Creating Custom Validation in Laravel 5
posted 8 years ago
Extending the validation class to create a custom validation. 1) Create Custom Validation class that extends Validator class. 2) Boot this custom validation class on your service provider and 3) finally you can use it on your request class.
Laravel 5.3 Cheat Sheet
posted 8 years ago
New Laravel 5.3 Cheat Sheet which include: Artisan Commands
Installing Laravel 5.2 from Scratch : Initial Setup
posted 8 years ago
So you want to level up with Laravel? The first step is to install Laravel on our machine. We'll do that installing Composer, pulling in Laravel's helpful installer utility, and then running larave
Consume External API from Laravel 5.2 using Guzzle Http Client
posted 8 years ago
API could be consumed in many ways in Laravel. For e.g. you can create your own custom API Package to consume API on the remote application. Or there is a better way. This is by using the Guzzle HTTP Client.
Problem: I got bindShared application error after updating from laravel 5.1 to 5.2. SOLUTION: Remove the outdated package illuminate/htm:^5.0 and remove its service provider too. Then replace with "laravelcollective/html": "5.2.*"
Cannot find module laravel-elixir-group
posted 8 years ago
To Fix 1. var ElixirGroup = require('laravel-elixir-group'); 2. Add laravel-elixir-group into the package.json 3. Run npm install.
No supported encrypter found. The cipher and / or key length are invalid.
posted 8 years ago
To fix this error in Laravel 5, execute php artisan key:generate command. Then, copy the generated application key and add it into the .env file APP_KEY=xlhF31NeOlibJcoOW9tvZg7TkHcAZI3a.
How to Specify a Separate Database for Unit Testing on Laravel 5
posted 8 years ago
First method is to Create Test Database > Specify Test Database Connection in Config > Modify phpunit.xml. Second is to create .env.testing and load this environment on TestCase->createApplication()
How to Copy or Duplicate Table Row Using Eloquent
posted 8 years ago
To copy or duplicate table row without overwriting a existing one, use eloquent replicate() method. This will create a copy of the existing row with a new id.
Consuming Laravel API From Laravel Application Itself
posted 8 years ago
Consuming my own Laravel API: I have Laravel API made available for external application. But how do I consume this API from my own Laravel Application?
Argument 1 passed to BelongsToMany formatSyncList must be of the type array, null given
posted 8 years ago
Solution to Problem : Argument 1 passed to Illuminate\Database\Eloquent\Relations\BelongsToMany::formatSyncList() must be of the type array, null given, called in ...
Laravel Event is not firing?
posted 9 years ago
If Laravel 5 Event is not firing, you can run php artisan optimize, composer dump autoload and php artisan clear-compiled command.
Whoops, looks like something went wrong! - Laravel 5
posted 9 years ago
Solution to get rid of Whoops, looks like something went wrong in Laravel 5 and Laravel 5.1.
Laravel 5 and Laravel 4 Cheat Sheet
posted 9 years ago
Easy, Quick, Concise Laravel 5.1, Laravel 5 and Laravel 4 Cheat Sheet - PHP Artisan, Composer, Routing, Database Schema, Database Indexes, Database Foreign Keys, Database Column Types, Eloquent, Views, SSH, Unit Test and more ...
I See Blank Page On Accessing Laravel Project
posted 9 years ago
Solution to get rid of blank page while accessing Laravel Page.
Laravel 123
posted 9 years ago
Laravel Installation Quick Tutorial
How to make a Ajax Request on Laravel when dropdown menu is clicked
posted 9 years ago
Laravel Ajax Route Controller Relationship.
Solution to fix failed to open stream: Permission denied error on Laravel