@extends('layouts.master') @section('pagetitle') Products @endsection @section('title') Products @endsection @section('content')

Products

Filter


@include('layouts.alert')
@php $i = ($products->perPage() * ($products->currentPage() - 1)) + 1 @endphp @forelse($products as $product) @empty @endforelse
S.no Category Name Name Price Condition Status Action
{{ $i++ }} {{ @$product->category->name }} {{ @$product->name }} {{ $product->price }} {{ $product->condition }} status ? 'checked' : '' }}>
Product Not Found!
{{ $products->appends( Request::all() )->links() }}
@endsection @push('script') @endpush