我正在学习 Laravel 刀片。我已经安装了微风,我正在尝试在 dashboard.blade.php 中添加一个按钮。
<x-app-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
{{ __('Dashboard') }}
</h2>
</x-slot>
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6 bg-white border-b border-gray-200">
Hello, You're logged in!
<br><br><button type="button" class="btn btn-danger">Danger</button>
</div>
</div>
</div>
</div>
</x-app-layout>
该按钮出现时没有任何形状或轮廓。你能告诉我我在这里犯了什么错误吗?