Laravel Class 'GeneaLabsLaravelCastsFormFacade' not found (0)
I'm a bit stuck here I cannot get the FormFacade to work everytime I load my view it throws the error.
ErrorException (E_ERROR)
Class 'GeneaLabsLaravelCastsFormFacade' not found (View:
C:inetpubwwwrootLaravelhowlongresourcesviewsindex.blade.php)
Previous exceptions
Class 'GeneaLabsLaravelCastsFormFacade' not found (0)
I've added
'providers' => [
CollectiveHtmlHtmlServiceProvider::class,
],
and also
'aliases' => [
'Form' => CollectiveHtmlFormFacade::class,
'Html' => CollectiveHtmlHtmlFacade::class,
],
In my composer.json I have
"laravelcollective/html": "^5.7"
and I have run
composer update
php artisan config:clear
php artisan cache:clear
Still no luck, what am I doing wrong?
This is Laravel 5.7.14
My full composer.json
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^7.1.3",
"askedio/laravel5-profanity-filter": "^1.10",
"fideloper/proxy": "^4.0",
"genealabs/laravel-casts": "^0.8.2",
"laravel/framework": "5.7.*",
"laravel/tinker": "^1.0",
"laravelcollective/html": "^5.7"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover":
}
},
"autoload": {
"psr-4": {
"App\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\Foundation\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r "file_exists('.env') || copy('.env.example', '.env');""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}
}
php laravel laravel-5.7
add a comment |
I'm a bit stuck here I cannot get the FormFacade to work everytime I load my view it throws the error.
ErrorException (E_ERROR)
Class 'GeneaLabsLaravelCastsFormFacade' not found (View:
C:inetpubwwwrootLaravelhowlongresourcesviewsindex.blade.php)
Previous exceptions
Class 'GeneaLabsLaravelCastsFormFacade' not found (0)
I've added
'providers' => [
CollectiveHtmlHtmlServiceProvider::class,
],
and also
'aliases' => [
'Form' => CollectiveHtmlFormFacade::class,
'Html' => CollectiveHtmlHtmlFacade::class,
],
In my composer.json I have
"laravelcollective/html": "^5.7"
and I have run
composer update
php artisan config:clear
php artisan cache:clear
Still no luck, what am I doing wrong?
This is Laravel 5.7.14
My full composer.json
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^7.1.3",
"askedio/laravel5-profanity-filter": "^1.10",
"fideloper/proxy": "^4.0",
"genealabs/laravel-casts": "^0.8.2",
"laravel/framework": "5.7.*",
"laravel/tinker": "^1.0",
"laravelcollective/html": "^5.7"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover":
}
},
"autoload": {
"psr-4": {
"App\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\Foundation\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r "file_exists('.env') || copy('.env.example', '.env');""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}
}
php laravel laravel-5.7
can you add the view too? Also try composer dump-autoload
– Vaggelis Ksps
Nov 25 '18 at 13:21
add a comment |
I'm a bit stuck here I cannot get the FormFacade to work everytime I load my view it throws the error.
ErrorException (E_ERROR)
Class 'GeneaLabsLaravelCastsFormFacade' not found (View:
C:inetpubwwwrootLaravelhowlongresourcesviewsindex.blade.php)
Previous exceptions
Class 'GeneaLabsLaravelCastsFormFacade' not found (0)
I've added
'providers' => [
CollectiveHtmlHtmlServiceProvider::class,
],
and also
'aliases' => [
'Form' => CollectiveHtmlFormFacade::class,
'Html' => CollectiveHtmlHtmlFacade::class,
],
In my composer.json I have
"laravelcollective/html": "^5.7"
and I have run
composer update
php artisan config:clear
php artisan cache:clear
Still no luck, what am I doing wrong?
This is Laravel 5.7.14
My full composer.json
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^7.1.3",
"askedio/laravel5-profanity-filter": "^1.10",
"fideloper/proxy": "^4.0",
"genealabs/laravel-casts": "^0.8.2",
"laravel/framework": "5.7.*",
"laravel/tinker": "^1.0",
"laravelcollective/html": "^5.7"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover":
}
},
"autoload": {
"psr-4": {
"App\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\Foundation\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r "file_exists('.env') || copy('.env.example', '.env');""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}
}
php laravel laravel-5.7
I'm a bit stuck here I cannot get the FormFacade to work everytime I load my view it throws the error.
ErrorException (E_ERROR)
Class 'GeneaLabsLaravelCastsFormFacade' not found (View:
C:inetpubwwwrootLaravelhowlongresourcesviewsindex.blade.php)
Previous exceptions
Class 'GeneaLabsLaravelCastsFormFacade' not found (0)
I've added
'providers' => [
CollectiveHtmlHtmlServiceProvider::class,
],
and also
'aliases' => [
'Form' => CollectiveHtmlFormFacade::class,
'Html' => CollectiveHtmlHtmlFacade::class,
],
In my composer.json I have
"laravelcollective/html": "^5.7"
and I have run
composer update
php artisan config:clear
php artisan cache:clear
Still no luck, what am I doing wrong?
This is Laravel 5.7.14
My full composer.json
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^7.1.3",
"askedio/laravel5-profanity-filter": "^1.10",
"fideloper/proxy": "^4.0",
"genealabs/laravel-casts": "^0.8.2",
"laravel/framework": "5.7.*",
"laravel/tinker": "^1.0",
"laravelcollective/html": "^5.7"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover":
}
},
"autoload": {
"psr-4": {
"App\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\Foundation\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r "file_exists('.env') || copy('.env.example', '.env');""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}
}
php laravel laravel-5.7
php laravel laravel-5.7
asked Nov 25 '18 at 13:10
James WilsonJames Wilson
132
132
can you add the view too? Also try composer dump-autoload
– Vaggelis Ksps
Nov 25 '18 at 13:21
add a comment |
can you add the view too? Also try composer dump-autoload
– Vaggelis Ksps
Nov 25 '18 at 13:21
can you add the view too? Also try composer dump-autoload
– Vaggelis Ksps
Nov 25 '18 at 13:21
can you add the view too? Also try composer dump-autoload
– Vaggelis Ksps
Nov 25 '18 at 13:21
add a comment |
1 Answer
1
active
oldest
votes
The path GeneaLabsLaravelCastsFormFacade is wrong, it should have been GeneaLabsLaravelCastsFacadesFormFacade, and belongs to genealabs/laravel-casts package. Are you using this package anywhere?
Please correct it to the bellow,
GeneaLabsLaravelCastsFacadesFormFacade
Where would I change that?
– James Wilson
Nov 25 '18 at 15:17
Just searched the entire of Laravel for GeneaLabsLaravelCastsFormFacade and it doesnt' exist, so confused where this is coming from?
– James Wilson
Nov 25 '18 at 15:22
Fixed it I changed it iin bootstrapcachepackages.php This must be this bug in the package? Suprised more haven't come across this issue?? github.com/GeneaLabs/laravel-casts/issues/86
– James Wilson
Nov 25 '18 at 16:03
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53467788%2flaravel-class-genealabs-laravelcasts-formfacade-not-found-0%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The path GeneaLabsLaravelCastsFormFacade is wrong, it should have been GeneaLabsLaravelCastsFacadesFormFacade, and belongs to genealabs/laravel-casts package. Are you using this package anywhere?
Please correct it to the bellow,
GeneaLabsLaravelCastsFacadesFormFacade
Where would I change that?
– James Wilson
Nov 25 '18 at 15:17
Just searched the entire of Laravel for GeneaLabsLaravelCastsFormFacade and it doesnt' exist, so confused where this is coming from?
– James Wilson
Nov 25 '18 at 15:22
Fixed it I changed it iin bootstrapcachepackages.php This must be this bug in the package? Suprised more haven't come across this issue?? github.com/GeneaLabs/laravel-casts/issues/86
– James Wilson
Nov 25 '18 at 16:03
add a comment |
The path GeneaLabsLaravelCastsFormFacade is wrong, it should have been GeneaLabsLaravelCastsFacadesFormFacade, and belongs to genealabs/laravel-casts package. Are you using this package anywhere?
Please correct it to the bellow,
GeneaLabsLaravelCastsFacadesFormFacade
Where would I change that?
– James Wilson
Nov 25 '18 at 15:17
Just searched the entire of Laravel for GeneaLabsLaravelCastsFormFacade and it doesnt' exist, so confused where this is coming from?
– James Wilson
Nov 25 '18 at 15:22
Fixed it I changed it iin bootstrapcachepackages.php This must be this bug in the package? Suprised more haven't come across this issue?? github.com/GeneaLabs/laravel-casts/issues/86
– James Wilson
Nov 25 '18 at 16:03
add a comment |
The path GeneaLabsLaravelCastsFormFacade is wrong, it should have been GeneaLabsLaravelCastsFacadesFormFacade, and belongs to genealabs/laravel-casts package. Are you using this package anywhere?
Please correct it to the bellow,
GeneaLabsLaravelCastsFacadesFormFacade
The path GeneaLabsLaravelCastsFormFacade is wrong, it should have been GeneaLabsLaravelCastsFacadesFormFacade, and belongs to genealabs/laravel-casts package. Are you using this package anywhere?
Please correct it to the bellow,
GeneaLabsLaravelCastsFacadesFormFacade
answered Nov 25 '18 at 13:28
JeevanJeevan
1326
1326
Where would I change that?
– James Wilson
Nov 25 '18 at 15:17
Just searched the entire of Laravel for GeneaLabsLaravelCastsFormFacade and it doesnt' exist, so confused where this is coming from?
– James Wilson
Nov 25 '18 at 15:22
Fixed it I changed it iin bootstrapcachepackages.php This must be this bug in the package? Suprised more haven't come across this issue?? github.com/GeneaLabs/laravel-casts/issues/86
– James Wilson
Nov 25 '18 at 16:03
add a comment |
Where would I change that?
– James Wilson
Nov 25 '18 at 15:17
Just searched the entire of Laravel for GeneaLabsLaravelCastsFormFacade and it doesnt' exist, so confused where this is coming from?
– James Wilson
Nov 25 '18 at 15:22
Fixed it I changed it iin bootstrapcachepackages.php This must be this bug in the package? Suprised more haven't come across this issue?? github.com/GeneaLabs/laravel-casts/issues/86
– James Wilson
Nov 25 '18 at 16:03
Where would I change that?
– James Wilson
Nov 25 '18 at 15:17
Where would I change that?
– James Wilson
Nov 25 '18 at 15:17
Just searched the entire of Laravel for GeneaLabsLaravelCastsFormFacade and it doesnt' exist, so confused where this is coming from?
– James Wilson
Nov 25 '18 at 15:22
Just searched the entire of Laravel for GeneaLabsLaravelCastsFormFacade and it doesnt' exist, so confused where this is coming from?
– James Wilson
Nov 25 '18 at 15:22
Fixed it I changed it iin bootstrapcachepackages.php This must be this bug in the package? Suprised more haven't come across this issue?? github.com/GeneaLabs/laravel-casts/issues/86
– James Wilson
Nov 25 '18 at 16:03
Fixed it I changed it iin bootstrapcachepackages.php This must be this bug in the package? Suprised more haven't come across this issue?? github.com/GeneaLabs/laravel-casts/issues/86
– James Wilson
Nov 25 '18 at 16:03
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53467788%2flaravel-class-genealabs-laravelcasts-formfacade-not-found-0%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
can you add the view too? Also try composer dump-autoload
– Vaggelis Ksps
Nov 25 '18 at 13:21