phplaravellaravel-bladetoastr

Laravel yoeunes/toastr getting white background and white text


I am using laravel 7. Here I used yoeunes/toastr ( https://packagist.org/packages/yoeunes/toastr ) . But the background color of the toastr and text color is white. also tried other toastr also. Happening the same thing. When I am removing all my layouts file ( js,jquery,css linked header file) the toastr works fine .but with the layouts file the toastr is not working.

here is the alert

I used the code as documantation


Solution

  • use @toastr_css after your layouts file ( js,jquery,css linked header file) . After extending layout use the @toastr_css in the section part like this

     @extends('layouts')
     @section('content')
     @toastr_css
     ....your code....
     
     @jquery
     @toastr_js
     @toastr_render
     @endsection
    

    then it will not affect your layout file