Skip to content

Commit

Permalink
Merge pull request #611 from Laravel-Backpack/remove-inexistent-function
Browse files Browse the repository at this point in the history
remove inexistent function
  • Loading branch information
pxpm authored Oct 17, 2024
2 parents 993f068 + ae75f45 commit 8fc23a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 6.x/add-ons-tutorial-how-to-create-a-theme.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ The `my-cool-theme/inc/theme_styles.blade.php` file should hold all custom CSS t
@basset('https://cdn.jsdelivr.net/npm/[email protected]/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'))
@basset(resource_path('my-cool-theme/assets/css/extra.css'))

{{-- You can also write inline CSS blocks --}}
@bassetBlock('my-cool-theme/custom-styling')
Expand Down
2 changes: 1 addition & 1 deletion 7.x-dev/add-ons-tutorial-how-to-create-a-theme.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ The `my-cool-theme/inc/theme_styles.blade.php` file should hold all custom CSS t
@basset('https://cdn.jsdelivr.net/npm/[email protected]/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'))
@basset(resource_path('my-cool-theme/assets/css/extra.css'))

{{-- You can also write inline CSS blocks --}}
@bassetBlock('my-cool-theme/custom-styling')
Expand Down

0 comments on commit 8fc23a1

Please sign in to comment.