Posts by Ricardo Volkz • 11 points
2 posts
-
0
votes2
answers374
viewsA: Change table color on Laravel Blade
To solve, I made a validation. @if( $financa->banco == 1) @php $cor = 'red' @endphp @elseif( $financa->banco == 2) @php $cor = 'green' @endphp @else @php $cor = 'pink' @endphp @endif…
-
1
votes2
answers374
viewsQ: Change table color on Laravel Blade
Hello. I want to change the background of a table according to the type in DB. I am using Laravel 5.5. Can you help me?