@extends('layout.master') @section('title', "Products") @section('content') @include('partials.page_header', ['title' => 'Products'])
@if (session()->has('success'))
{{ session('success') }}
@endif
@if($products->count()) @foreach($products as $item)
@include('partials.product', ['product' => $item])
@endforeach @endif
{{ $products->links('vendor.pagination.bootstrap-4') }}
@stop @push('scripts_end') @endpush