@extends('layouts.admin.app') @section('content')
@if( Session::get('permissions.user_type') == 'A' || Session::get('permissions.user_type') == 'SA')
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

{{ Session::get('alert-' . $msg) }}

@endif @endforeach
Addon List
@if($result->count() != 0)
@php $i=1; @endphp @foreach($result as $key => $products) @endforeach
No. Image Title {!! CustomPaginator::sort('fnid', 'SKU', ['direction' => true]) !!} Price {!! CustomPaginator::sort('is_block', 'Status', ['direction' => true]) !!}
{{ $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
@else
No Data Found...
@endif
@endif
@endsection