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;








0















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.










share|improve this question






























    0















    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.










    share|improve this question


























      0












      0








      0








      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.










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 22 at 6:55







      Davide Casiraghi

















      asked Mar 22 at 5:51









      Davide CasiraghiDavide Casiraghi

      496318




      496318






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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' => '',
          ])





          share|improve this answer

























            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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' => '',
            ])





            share|improve this answer





























              0














              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' => '',
              ])





              share|improve this answer



























                0












                0








                0







                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' => '',
                ])





                share|improve this answer















                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' => '',
                ])






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Mar 22 at 21:58

























                answered Mar 22 at 21:29









                Davide CasiraghiDavide Casiraghi

                496318




                496318





























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현