Custom Blade directives for Laravel Applications.
See https://laravel.com/docs/blade
Install the saritasa/blade-directives
package:
$ composer require saritasa/blade-directives
If you use Laravel 5.4 or less,
or 5.5+ with package discovery disabled,
add the BladeDirectivesServiceProvider service provider config/app.php
:
'providers' => array(
// ...
Saritasa\Laravel\BladeDirectivesServiceProvider::class,
)
Output word 'active' if URL, requested by user, matches provided route name
Example:
<li class="@activeIfRoute('user.settings')">
<a href="{{ route('user.settings') }}">Settings</a>
</li>
Output word 'selected' if passed expression evaluates to true
Example:
<select>
@foreach($users as $user)
<option value='{{ $user->id }}' @selectedIf($user->id == $currentUserId)>{{ $user->name }}</option>
@endforeach
</select>
- Create fork, checkout it
- Develop locally as usual. Code must follow PSR-1, PSR-2 - run PHP_CodeSniffer to ensure, that code follows style guides
- Update README.md to describe new or changed functionality
- Add changes description to CHANGES.md file. Use Semantic Versioning convention to determine next version number.
- When ready, create pull request
If you have GNU Make installed, you can use following shortcuts:
make cs
(instead ofphp vendor/bin/phpcs
) - run static code analysis with PHP_CodeSniffer to check code stylemake csfix
(instead ofphp vendor/bin/phpcbf
) - fix code style violations with PHP_CodeSniffer automatically, where possible (ex. PSR-2 code formatting violations)make install
- instead ofcomposer install
make all
or justmake
without parameters - invokes described above install, cs tasks sequentially - project will be assembled and checked with linter with one single command