Get a random lyric by The Sword. This is a very simple facade I used to learn how to set up a facade in Laravel.
Grab it through Composer.
composer require kkiernan/sword
Add the service provider to your config/app.php file in the providers array.
'providers' => [
//...
Sword\SwordServiceProvider::class
]
Add the Sword alias to your aliases in config/app.php.
'aliases' => [
//...
'Sword' => Sword\SwordFacade::class
]
Call the lyric method to get a random lyric. For example, you could use it in a blade template.
<p>{{ Sword::lyric() }}</p>