我的项目是在 laravel+bootstrap 上制作的。按钮没有图标,我不知道为什么。
我的应用程序.scss
// Fonts
@import url('https://fonts.googleapis.com/css?family=Nunito');
// Variables
@import 'variables';
// Bootstrap
@import '~bootstrap/scss/bootstrap';
.table-buttons {
text-align: right;
}
.table-buttons form {
display: contents;
}
我的带按钮的刀片
<td class="table-buttons">
<a href="{{ route('application_form.show', $application_form) }}" class="btn btn-success">
<i class="fa fa-eye"></i>
</a>
@if (!(Auth::user()->id == 2))
<a href="{{ route('application_form.edit', $application_form) }}" class="btn btn-primary">
<i class="fa fa-edit"></i>
</a>
<form method="POST" action="{{ route('application_form.destroy', $application_form) }}">
@method('DELETE')
@csrf
<button type="submit" class="btn btn-danger">
<i class="fa fa-trash-alt"></i>
</button>
@endif
</form>
</td>
当然,我使用了 command npm run dev
。
我的布局刀片中的图标链接:
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.3/css/fontawesome.min.css" integrity="undefined" crossorigin="anonymous">