I got message Undefined variable
Undefined variable: pesan (View: C:\xampp\htdocs\webapp\resources\views\welcome.blade.php)
This my controller
...
public function index(){
  $data = DB::table('data_peminjaman')->get();
  $inventaris = DB::table('inventaris')->get();
  $posting = DB::table('artikel')->get();
  $pesan = null;
  $semuanya = ['posting' => $posting,
                'pesan' => $pesan,
                'data' => $data,
                '$inventaris' => $inventaris];
  return view('welcome', $semuanya);
}
...
This is my blade code
 @if ($pesan !=null)
     <div class="alert alert-danger">
        {{ $pesan }}
    </div>
 @endif
 
     
    