Laravel 10 – 13
PHP 8.1+
Low commit activity in last 18 months
A long-lived project that still receives updates
A package to easily make use of ionicons in your Laravel Blade views.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

^8.0|^9.0|^10.0|^11.0
phpunit/phpunit
^10.5|^11.0|^12.0

Runtime

 Project Readme

Blade Ionicons

Latest Version on Packagist Build Status Quality Score Total Downloads

A package to easily make use of Ionicons in your Laravel Blade views.

For a full list of available icons see the SVG directory. Ionicons are originally developed by Ionic Framework Team.

Requirements

  • PHP 8.1 or higher
  • Laravel 10.0 or higher

Installation

You can install the package via composer:

composer require faisal50x/blade-ionicons

Usage

Icons can be used a self-closing Blade components which will be compiled to SVG icons:

<x-ionicon-logo-apple/>

You can also pass classes to your icon components:

<x-ionicon-logo-apple class="w-6 h-6 text-gray-500"/>

And even use inline styles:

<x-ionicon-logo-apple style="color: #555"/>

Raw SVG Icons

If you want to use the raw SVG icons as assets, you can publish them using:

php artisan vendor:publish --tag=blade-ionicons --force

Then use them in your views like:

<img src="{{ asset('vendor/blade-ionicons/logo-apple.svg') }}" width="10" height="10"/>

Blade Icons

Blade ionicons uses Blade Icons under the hood. Please refer to the Blade Icons readme for additional functionality.

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Security

If you discover any security related issues, please email foysal20x@gmail.com instead of using the issue tracker.

Maintainers

Blade Ionicons is developed and maintained by Faisal Ahmed

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.