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

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

@endif @endforeach
Agent Products
@if(count($result) > 0)
@php $i=1; @endphp @foreach($result as $key => $data) {{----}} @endforeach
No. Title Slug Price Gst Without Gst Created Date Action
{{ $i + $key }} {{$data->item}} {{$data->slug}} {{$data->price}} {{$data->gst}} {{$data->price_without_gst}} {{date('d-m-Y', strtotime($data->created_at))}} {{-- --}}
@else
No Data Found...
@endif
@endsection