Testing with PhpUnit a blade view that contains @include or @extend directives in a Laravel 5 Package The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceLaravel 4 phpunit test: Test flagged as `risky` for not closing its own output buffersTesting a Laravel packageLaravel 5.2 blade views not being rendered, even though the foot view shows. Internal server errorLaravel 5.1 PHPunit error when testing urls with method call or visitInclude package view in my main viewWeb middleware group not applied to error pages in Laravel?PHPUnit configuring and running a group test [Laravel 5.6]Laravel 5, get the HTTP status code from Blade viewSilent undefined variable in view when testing laravel routeLaravel + phpunit - view() not working in unit test
Keeping a retro style to sci-fi spaceships?
What happens to a Warlock's expended Spell Slots when they gain a Level?
Why doesn't shell automatically fix "useless use of cat"?
Why can't wing-mounted spoilers be used to steepen approaches?
should truth entail possible truth
Intergalactic human space ship encounters another ship, character gets shunted off beyond known universe, reality starts collapsing
Can we generate random numbers using irrational numbers like π and e?
Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?
"is" operation returns false with ndarray.data attribute, even though two array objects have same id
Identify 80s or 90s comics with ripped creatures (not dwarves)
Could an empire control the whole planet with today's comunication methods?
For what reasons would an animal species NOT cross a *horizontal* land bridge?
The following signatures were invalid: EXPKEYSIG 1397BC53640DB551
Why are PDP-7-style microprogrammed instructions out of vogue?
What can I do if neighbor is blocking my solar panels intentionally?
Why doesn't a hydraulic lever violate conservation of energy?
Why can't devices on different VLANs, but on the same subnet, communicate?
Does Parliament need to approve the new Brexit delay to 31 October 2019?
Example of compact Riemannian manifold with only one geodesic.
Store Dynamic-accessible hidden metadata in a cell
Do ℕ, mathbbN, BbbN, symbbN effectively differ, and is there a "canonical" specification of the naturals?
My body leaves; my core can stay
Make it rain characters
What to do when moving next to a bird sanctuary with a loosely-domesticated cat?
Testing with PhpUnit a blade view that contains @include or @extend directives in a Laravel 5 Package
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experienceLaravel 4 phpunit test: Test flagged as `risky` for not closing its own output buffersTesting a Laravel packageLaravel 5.2 blade views not being rendered, even though the foot view shows. Internal server errorLaravel 5.1 PHPunit error when testing urls with method call or visitInclude package view in my main viewWeb middleware group not applied to error pages in Laravel?PHPUnit configuring and running a group test [Laravel 5.6]Laravel 5, get the HTTP status code from Blade viewSilent undefined variable in view when testing laravel routeLaravel + phpunit - view() not working in unit test
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I'm developing a Laravel package and I'm trying to figure out how to test with PhpUnit, a Blade view that contains @include or @extend directives.
This is the structure of the package resource folder:
resources
-- views
---- create.blade.php
---- edit.blade.php
---- layout.blade.php
The create and edit views start extending the layout one.
@extends('vendor.laravel-responsive-gallery.layout')
When I install the package in an application and publish the views this works fine, but when I'm in the test environment and I run PhpUnit i get the error.
The response is not a view.
This because PhpUnit cannot resolve the address of the view.
I have tried also with this approach to avoid testing that line of code.
@if (env('APP_ENV')!='testing')
@extends('vendor.laravel-responsive-gallery.layout')
@endif
But I PhpUnit throw again the same error.
Since is not possible to assign a relative path to an @extends or @include directive, do you know how can I test my view without commenting this @extends
line?
I've checked already on Stack overflow and on the Internet but I didn't find any mention to this.
laravel laravel-5 composer-php phpunit laravel-blade
add a comment |
I'm developing a Laravel package and I'm trying to figure out how to test with PhpUnit, a Blade view that contains @include or @extend directives.
This is the structure of the package resource folder:
resources
-- views
---- create.blade.php
---- edit.blade.php
---- layout.blade.php
The create and edit views start extending the layout one.
@extends('vendor.laravel-responsive-gallery.layout')
When I install the package in an application and publish the views this works fine, but when I'm in the test environment and I run PhpUnit i get the error.
The response is not a view.
This because PhpUnit cannot resolve the address of the view.
I have tried also with this approach to avoid testing that line of code.
@if (env('APP_ENV')!='testing')
@extends('vendor.laravel-responsive-gallery.layout')
@endif
But I PhpUnit throw again the same error.
Since is not possible to assign a relative path to an @extends or @include directive, do you know how can I test my view without commenting this @extends
line?
I've checked already on Stack overflow and on the Internet but I didn't find any mention to this.
laravel laravel-5 composer-php phpunit laravel-blade
add a comment |
I'm developing a Laravel package and I'm trying to figure out how to test with PhpUnit, a Blade view that contains @include or @extend directives.
This is the structure of the package resource folder:
resources
-- views
---- create.blade.php
---- edit.blade.php
---- layout.blade.php
The create and edit views start extending the layout one.
@extends('vendor.laravel-responsive-gallery.layout')
When I install the package in an application and publish the views this works fine, but when I'm in the test environment and I run PhpUnit i get the error.
The response is not a view.
This because PhpUnit cannot resolve the address of the view.
I have tried also with this approach to avoid testing that line of code.
@if (env('APP_ENV')!='testing')
@extends('vendor.laravel-responsive-gallery.layout')
@endif
But I PhpUnit throw again the same error.
Since is not possible to assign a relative path to an @extends or @include directive, do you know how can I test my view without commenting this @extends
line?
I've checked already on Stack overflow and on the Internet but I didn't find any mention to this.
laravel laravel-5 composer-php phpunit laravel-blade
I'm developing a Laravel package and I'm trying to figure out how to test with PhpUnit, a Blade view that contains @include or @extend directives.
This is the structure of the package resource folder:
resources
-- views
---- create.blade.php
---- edit.blade.php
---- layout.blade.php
The create and edit views start extending the layout one.
@extends('vendor.laravel-responsive-gallery.layout')
When I install the package in an application and publish the views this works fine, but when I'm in the test environment and I run PhpUnit i get the error.
The response is not a view.
This because PhpUnit cannot resolve the address of the view.
I have tried also with this approach to avoid testing that line of code.
@if (env('APP_ENV')!='testing')
@extends('vendor.laravel-responsive-gallery.layout')
@endif
But I PhpUnit throw again the same error.
Since is not possible to assign a relative path to an @extends or @include directive, do you know how can I test my view without commenting this @extends
line?
I've checked already on Stack overflow and on the Internet but I didn't find any mention to this.
laravel laravel-5 composer-php phpunit laravel-blade
laravel laravel-5 composer-php phpunit laravel-blade
edited Mar 22 at 6:55
Davide Casiraghi
asked Mar 22 at 5:51
Davide CasiraghiDavide Casiraghi
496318
496318
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I've solved registering the view in the ServiceProvider of my package.
Telling that this package provide some views in the /resources/views directory and this views can be accessed using the vendor name of the package php-responsive-quote
.
public function boot()
...
$this->loadViewsFrom(__DIR__ . '/../resources/views', 'php-responsive-quote');
...
And then in the view, calling the @extends
and the @include
directive in this way.
@extends('laravel-responsive-gallery::layout')
@include('laravel-responsive-gallery::partials.input', [
'title' => 'Image file name',
'name' => 'file_name',
'placeholder' => '',
])
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%2f55293631%2ftesting-with-phpunit-a-blade-view-that-contains-include-or-extend-directives-i%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
I've solved registering the view in the ServiceProvider of my package.
Telling that this package provide some views in the /resources/views directory and this views can be accessed using the vendor name of the package php-responsive-quote
.
public function boot()
...
$this->loadViewsFrom(__DIR__ . '/../resources/views', 'php-responsive-quote');
...
And then in the view, calling the @extends
and the @include
directive in this way.
@extends('laravel-responsive-gallery::layout')
@include('laravel-responsive-gallery::partials.input', [
'title' => 'Image file name',
'name' => 'file_name',
'placeholder' => '',
])
add a comment |
I've solved registering the view in the ServiceProvider of my package.
Telling that this package provide some views in the /resources/views directory and this views can be accessed using the vendor name of the package php-responsive-quote
.
public function boot()
...
$this->loadViewsFrom(__DIR__ . '/../resources/views', 'php-responsive-quote');
...
And then in the view, calling the @extends
and the @include
directive in this way.
@extends('laravel-responsive-gallery::layout')
@include('laravel-responsive-gallery::partials.input', [
'title' => 'Image file name',
'name' => 'file_name',
'placeholder' => '',
])
add a comment |
I've solved registering the view in the ServiceProvider of my package.
Telling that this package provide some views in the /resources/views directory and this views can be accessed using the vendor name of the package php-responsive-quote
.
public function boot()
...
$this->loadViewsFrom(__DIR__ . '/../resources/views', 'php-responsive-quote');
...
And then in the view, calling the @extends
and the @include
directive in this way.
@extends('laravel-responsive-gallery::layout')
@include('laravel-responsive-gallery::partials.input', [
'title' => 'Image file name',
'name' => 'file_name',
'placeholder' => '',
])
I've solved registering the view in the ServiceProvider of my package.
Telling that this package provide some views in the /resources/views directory and this views can be accessed using the vendor name of the package php-responsive-quote
.
public function boot()
...
$this->loadViewsFrom(__DIR__ . '/../resources/views', 'php-responsive-quote');
...
And then in the view, calling the @extends
and the @include
directive in this way.
@extends('laravel-responsive-gallery::layout')
@include('laravel-responsive-gallery::partials.input', [
'title' => 'Image file name',
'name' => 'file_name',
'placeholder' => '',
])
edited Mar 22 at 21:58
answered Mar 22 at 21:29
Davide CasiraghiDavide Casiraghi
496318
496318
add a comment |
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%2f55293631%2ftesting-with-phpunit-a-blade-view-that-contains-include-or-extend-directives-i%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