function test_chains_methods_to_build_complex_alert_messages()
 {
     // Having
     $items = ['Laravel courses', 'OOP classes', 'Access to real projects', 'Support', 'And more'];
     Alert::info('Your account is about to expire')->details('A lot of knowledge still waits for you:')->items($items)->button('Renew now!', '#', 'primary')->button('Take me to your leader', 'http://google.com', 'info');
     // Expect
     $this->assertTemplate('alerts/complex', Alert::render());
 }