@extends('layouts.layout') @section('title', 'Popular Collections') @section('content')

Popular Collections List

@if(Session::has('message')) @endif @if(count($jewels)>0) @foreach($jewels as $key=>$item) @endforeach @else @endif
# Name Image Status Action
{{ $key+1 }} {{ $item->jewels_name }} @if($item->jewels_images) @else @endif @if($item->status=='0') Inactive @endif @if($item->status=='1') Active @endif @include('shared._actions', [ 'entity' => 'jewels', 'id' => $item->id ])

No records found!

Click here to add a new record.
@endsection