diff --git a/src/View/Components/Card/Card.php b/src/View/Components/Card/Card.php index c513255..b285db8 100644 --- a/src/View/Components/Card/Card.php +++ b/src/View/Components/Card/Card.php @@ -13,7 +13,7 @@ public function __construct() {} public function roundedClass(): string { - $default = config("tallcraftui.card.border-radius", 'rounded-lg'); + $default = config('tallcraftui.card.border-radius', 'rounded-lg'); return match (true) { $default === 'rounded' => 'rounded', diff --git a/src/View/Components/Card/CardFigure.php b/src/View/Components/Card/CardFigure.php index 8a314f1..d13fafa 100644 --- a/src/View/Components/Card/CardFigure.php +++ b/src/View/Components/Card/CardFigure.php @@ -18,7 +18,7 @@ public function __construct( public function roundedClass(): string { - $default = config("tallcraftui.card.border-radius", 'rounded-lg'); + $default = config('tallcraftui.card.border-radius', 'rounded-lg'); return match (true) { $default === 'rounded' => 'rounded',