PHP-Parallel-Lint
PHP-Parallel-Lint copied to clipboard
Support for Laravel Blade template
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>
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/.