Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

if no data show msg and chang style laravel

@if($products->count())
     @foreach ($products as $item)
         <tr @if($loop->first) class="bg-info" @endif>
             <th>{{ $item->id }}</th>
             <td>{{ $item->title }}</td>
             <td>${{ number_format($item->price,2) }}</td>
             <td>{{ $item->cat->title }}</td>
         </tr>
     @endforeach
 @else
     <div class="alert alert-danger">No Products Added</div>
 @endif
Source by www.etharshrouf.com #
 
PREVIOUS NEXT
Tagged: #data #show #msg #chang #style #laravel
ADD COMMENT
Topic
Name
7+6 =