Nhảy tới nội dung
Phiên bản: 7.3.0

Alert

Hiển thị thông báo cảnh báo cần chú ý, Để sử dụng component alert bạn sử dụng

Admin::alert($template, $message, $attributes)

Các loại template button

  • success img_1.png
echo Admin::alert('success', 'Đây là nội dung thông báo');
  • info img_2.png
echo Admin::alert('info', 'Đây là nội dung thông báo');
  • warning img_3.png
echo Admin::alert('warning', 'Đây là nội dung thông báo');
  • error img_4.png
echo Admin::alert('error', 'Đây là nội dung thông báo');

Danh sách attributes:

KeyTypeDescription
iconstringicon của thông báo
headingstringtiêu đề thông báo
echo Admin::alert('warning', 'Đây là nội dung thông báo', [
'heading' => 'Header'
]);