@if( !empty($data) ) @foreach( $data as $record )
{{ $record->name }}
{{ Str::limit($record->name,25,' ...') }}

{{ Str::limit($record->description, 100,' ...') }}


    @if( $record->price_type == 'special_price' ) @elseif( $record->price_type == 'off' ) @else @endif

@endforeach @else
No data found
@endif