@props([
'pCol' => 'col-md-4',
'pClass' => null,
'icon' => 'las la-bookmark',
'colorName' => null,
'colorCode' => 'rgb(128,93,202)',
'backgroundColorCode' => 'rgba(128,93,202,0.22)',
'placeholder' => null,
'value' => null,
])
@switch($colorName)
@case("secondary")
@php
$colorCode = 'rgb(128,93,202)';
$backgroundColorCode = 'rgba(128,93,202,0.22)';
@endphp
@break
@case("success")
@php
$colorCode = 'rgb(0,150,136)';
$backgroundColorCode = 'rgba(0,150,136,0.22)';
@endphp
@break
@case("info")
@php
$colorCode = 'rgb(33,150,243)';
$backgroundColorCode = 'rgba(33,150,243,0.22)';
@endphp
@break
@default
@endswitch
{{ $placeholder }}
{!! $value !!}