PHP-Parallel-Lint icon indicating copy to clipboard operation
PHP-Parallel-Lint copied to clipboard

Support for Laravel Blade template

Open williamn opened this issue 8 years ago • 1 comments

How can I make parallel-lint show this Laravel blade template snippet as error?

<html>
    <head>
        <title>App Name - @yield('title')</title>
    </head>
    <body>
        @section('sidebar')
            This is the master sidebar.
        @show

        <div class="container">
            @yield('content')
        </div>
    </body>
</html>

williamn avatar Mar 08 '17 11:03 williamn

I think there is no such tool as blade-lint. In our CI we run artisan view:cache and check the resulting PHP files in storage/framework/views/.

szepeviktor avatar Jun 21 '18 08:06 szepeviktor