@extends('layouts.admin') @section('title', 'Kelola Produk') @section('content_header')

Kelola Produk

@stop @section('content')
@if ($message = Session::get('success')) @endif

Daftar Produk

@if ($products->count() > 0) @foreach ($products as $key => $product) @endforeach
No Nama Icon Gambar Deskripsi Singkat Detail Aksi
{{ ($products->currentPage() - 1) * $products->perPage() + $key + 1 }} {{ $product->name }}
{{ $product->slug }}
@if ($product->icon) {{ $product->name }} @else No Icon @endif @if ($product->image) {{ $product->name }} @else No Image @endif {{ Str::limit($product->short_description, 50, '...') }} {{ $product->productDetails->count() }} detail
@csrf @method('DELETE')
{{ $products->render() }}
@else
Belum ada data. Silahkan tambahkan produk baru.
@endif
@stop @section('css') @stop