@extends('layouts.admin_layout')
@section('content')
@section('title', 'Product List')
S.No |
Category |
Title |
Price |
Action |
@forelse($products as $key=>$row)
{{$key+1+($products->currentPage()-1) * ($products->perPage())}} |
{{$row->category->title ?? ''}} |
{{$row->title ?? ''}} |
₹{{$row->regular_price ?? ''}} |
Edit
Delete
|
@empty
Data not found |
@endif
{{$products->links()}}
@include('includes.admin.footer')
@include('includes/admin/delete-model')
@stop