@foreach (['danger', 'warning', 'success', 'info'] as $msg)
@if(Session::has('alert-' . $msg))
{{ Session::get('alert-' . $msg) }}
@endif
@endforeach
Addon List
@if($result->count() != 0)
No. |
Image |
Title |
{!! CustomPaginator::sort('fnid', 'SKU', ['direction' => true]) !!} |
Price |
{!! CustomPaginator::sort('is_block', 'Status', ['direction' => true]) !!} |
@php $i=1; @endphp
@foreach($result as $key => $products)
{{ $i + $key }} |
@php
$imagename = App\Http\Helper1::get_image($products->id);
@endphp
@if(isset($imagename) && $imagename->name != null )
@else
@endif
{{$products->sku}}
|
{{$products->product_name}}
Delivery Type :
@if($products->delivery_type == 'C')
Courier
@else
Hand Delivery
@endif
|
{{$products->id}} / {{$products->fnid}}
|
₹ {{$products->price}}
@if($products->actual_price > 0)
{{$products->actual_price}}
@endif
|
|
@endforeach
@else
No Data Found...
@endif