A PHP project by dcblogdev
Explain what the package does.
You can install the package via composer:
composer require dcblogdev/laravel-tags
The following tags are available:
Import the facade
use Dcblogdev\Tags\Facades\Tags;
Example usage:
$content = "This is a post about [year] and [appName]";
$content = Tags::get($content);
echo $content
Would print
This is a post about 2023 and Laravel