I've found a piece to the puzzle. The problem lies with the extends class "FormValidator". Have I added it wrong to my composer.json file ?
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"laravel/framework": "4.2.*",
"laracasts/commander":"~1.0",
"laracasts/validation": "1.2.0"
},
"require-dev":{
"way/generators":"~2.0",
"codeception/codeception":"~2.0",
"laracasts/testdummy":"~1.0"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
],
"psr-4":{
"Larabook\\":"app/Larabook"
}
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community