Skip to content

Flashing Message

Asep edited this page Apr 9, 2022 · 3 revisions

Flashing with single message

session()->flash('success', 'Invoice has been created!')

Flashing with multiple message

session()->flash('success', [
      'Invoice has been created!',
      'And please make payment!',
])

Flashing Types

  • success
  • warning
  • info
  • danger