@extends('admin.layouts.layout') @section('content')
| Serial No | Image | Product Name | Main Product | Buy Now Link | Status |
Action
|
|---|---|---|---|---|---|---|
| {{ $row->serial_no ?? '-' }} |
@if ($row->image)
|
{{ Str::limit($row->title, 30) }} | {{ Str::limit($row->parent?->title ?? '-', 30) }} | @if ($row->buy_now_link) View Link @else - @endif |
@if ($row->status == 1)
Active
@else
InActive
@endif
|