vscode-blade-formatter icon indicating copy to clipboard operation
vscode-blade-formatter copied to clipboard

An opinionated Blade file formatter for VSCode

Results 101 vscode-blade-formatter issues
Sort by recently updated
recently updated
newest added

### Platform Windows ### Template before formatting ```blade Document {{-- Bootstrap cdn --}} Add & Remove Clients @csrf @if($errors->any()) @foreach($errors->all) as $error) {{$errors}} @endforeach @endif @if(session()->has('success')) {{ $request->session()->get('success'); }} @endif...

bug

### Platform Windows ### Template before formatting ```blade let formHTML = ` - Pilih Status - Aktif Pending Nonaktif ${btn_note} `; ``` ### Template after formatting ```blade let formHTML =...

bug

### Description Parse Error : syntax error, unexpected 'if' (T_IF) on line 14 12 | * @return void 13 | */ > 14 | if (!Schema::hasColumn('assets', 'capitalize_date')) { | ^...

### Platform Windows ### Template before formatting ```blade {{ Str::title(Auth::user()->name) }} Role: {{ Str::title(Auth::user()->role) }} ``` ### Template after formatting ```blade {{ Str::title(Auth::user()->name) }} Role: {{ Str::title(Auth::user()->role) }} ``` ###...

bug

### Platform Windows ### Template before formatting ```blade @if (isset($produto->id)) @csrf @method('PUT') @else @csrf @endif {{ $errors->has('nome') ? $errors->first('nome') : '' }} ``` ### Template after formatting ```blade @if (isset($produto->id))...

bug

### Platform Windows ### Template before formatting ```blade @forelse ($notes as $note) @if ($loop->first) @endif Title: {{ $note->title }} {{ $note->send_date->format('M-d-Y') }} Recipient: {{ $note->recipient }} @if ($loop->last) @endif @empty...

bug

### Platform Windows ### Template before formatting ```blade @props([ "id" "isForm" => false, "class" => "modal_form", ]) @if ($isForm) $(function() { window.validation_plugin = { trigger: new FormValidation.plugins.Trigger(), bootstrap: new FormValidation.plugins.Bootstrap5(),...

bug

### Platform Windows ### Template before formatting ```blade import { function } from "{{ Vite::asset('resources/js/scripts/exampleModule.js') }}"; ``` ### Template after formatting ```blade import { function } from "{{ Vite::asset('resources/js/scripts/exampleModule.js') }}";...

bug

### Platform Windows ### Template before formatting ```blade @include( 'layouts.meta', [ 'title' => 'My Blade App', 'description' => 'Long description for blade app', 'keywords' => 'App, Blade, Php, VScode', 'preview'...

bug

### Description i ran osv scanner and i found some security vulnerabilities with the the ext deps > | https://osv.dev/GHSA-93q8-gq69-wqmw │ 7.5 │ npm │ ansi-regex │ 3.0.0 │ >...

bug