hnhdigital-os/laravel-frontend-template

View on GitHub
src/Asset.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace HnhDigital\FrontendTemplate;

class Asset
{
    public function __construct()
    {
        app('FrontendAsset')->container('Bootstrap');
        app('FrontendAsset')->container('FontAwesome');
        app('FrontendAsset')->add('vendor/hnhdigital-frontend-template.css');
        app('FrontendAsset')->container('Animate');
        app('FrontendAsset')->container('Toastr');
    }
}