Description
in documentation :
The my-cool-theme/inc/theme_styles.blade.php file should hold all custom CSS that your theme needs. For example:
{{-- You can load files directly from CDNs, they will get cached and loaded from local --}}
@basset('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css')
{{-- You can also load files from any place in your application directories --}}
@basset(views_path('my-cool-theme/assets/css/extra.css'))
{{-- You can also write inline CSS blocks --}}
@bassetBlock('my-cool-theme/custom-styling')
@endBassetBlock
but in usage shows an error : Call to undefined function views_path()
Metadata
Metadata
Assignees
Type
Projects
Status
Done