haidubogdan / netbeans-php-blade-plugin

Netbeans 18+ module plugin for php blade template files
Apache License 2.0
26 stars 4 forks source link

Missing directives autocompletion #20

Closed erikn69 closed 2 years ago

erikn69 commented 2 years ago
@unless (Auth::check())
    You are not signed in.
@endunless

@isset($records)
    // $records is defined and is not null...
@endisset

@empty($records)
    // $records is "empty"...
@endempty

@verbatim
    Hello, {{ name }}.
@endverbatim

@production
    // Production specific content...
@endproduction

@includeWhen($boolean, 'view.name', ['status' => 'complete'])

@includeUnless($boolean, 'view.name', ['status' => 'complete'])

@includeFirst(['custom.admin', 'admin'], ['status' => 'complete'])

<span @class([
    'p-4', 'font-bold' => $isActive,
])></span>

<input type="email" name="email" value="email@laravel.com"
        @readonly($user->isNotAdmin()) />

@each('view.name', $jobs, 'job', 'view.empty')
haidubogdan commented 2 years ago

Thanks for the contribution :)