Laravel Blade Country and Language Icons


Laravel Blade Flags is a package to easily display countries & languages flags in your Laravel Blade views. When you have a project needing to display various country flags, you might hunt for SVG icons or JS components. This package has your back if you are using Blade as you can render flags as components or use the provided SVGs:

1<x-flag-country-br />

2<x-flag-country-cn />

3<x-flag-country-gb />

4<x-flag-country-ru />

5<x-flag-country-us />

The above blade components would render something like this:

blade svg output example

For styling, you can also provide a class attribute:

1<x-flag-country-us class="w-6 h-6"/>

You can also publish the SVGs that ship with this package using the asset helper:

1<img src="{{ asset('vendor/blade-flags/country-us.svg') }}" width="32" height="32"/>

This project uses the excellent Blade UI Kit, a set of renderless components to utilize in your Laravel Blade views. If you’re interested in using this package and seeing how it utilizes Blade UI Kit, check it out on GitHub.

Source link

Share

Leave a Reply

Your email address will not be published. Required fields are marked *