1// button.blade.php 2@props(['rounded' => false]) 3 4<button {{ $attributes->class([ 5 'bg-red-100 text-red-800', 6 'rounded' => $rounded 7 ]) }}> 8 {{ $slot }} 9</button>10 11// view.blade.php12// Non-rounded:13<x-button>Submit</x-button>14 15// Rounded:16<x-button rounded>Submit</x-button>
Tip given by @godismyjudge95