@extends('admin.layouts.layout') @section('content')

Products List

@can('create_product') @endcan
@include('admin.layouts.message')
@foreach ($products as $row) @endforeach
Serial No Image Product Name Main Product Buy Now Link Status
Action
{{ $row->serial_no ?? '-' }} @if ($row->image) {{ $row->title }} @else No Image @endif {{ 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
@can('create_product') @endcan @can('delete_product')
@method('DELETE') @csrf
@endcan
@endsection @push('styles') @endpush @push('scripts') @endpush