Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tamedevelopers committed Oct 13, 2024
1 parent 1c9ef20 commit a96ed88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Laravel.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function cssDirective()
$class = str_replace(['"', "'"], '', $class);

// fullpath
$assets = asset($path, true);
$assets = tasset($path, true);

return "<link rel='stylesheet' type='text/css' href='{$assets}'>";
});
Expand All @@ -48,7 +48,7 @@ public function jsDirective()
$class = str_replace(['"', "'"], '', $class);

// fullpath
$assets = asset($path, true);
$assets = tasset($path, true);

return "<script src='{$assets}'></script>";
});
Expand Down
2 changes: 1 addition & 1 deletion Tests/url.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
dd(
domain(),
domain('admin'),
asset('zip.php'),
tasset('zip.php'),

urlHelper()->server(),

Expand Down

0 comments on commit a96ed88

Please sign in to comment.