@php use Carbon\Carbon; @endphp @extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Users List') {{-- vendor styles --}} @section('vendor-styles') @endsection {{-- page styles --}} @section('page-styles') @endsection @section('content') Add Product {{-- Verified Any Yes No Role Any User Staff Status Any Active Close Banned Clear --}} @if (session()->has('success')) {{ session()->get('success') }} @endif Id {{-- Image --}} Name Quantity Price status edit @foreach ($product as $item) {{ $item->id }} {{-- --}} {{ $item->name }} {{ $item->quantity }} {{ $item->price }} BIF Active @csrf @method('delete') @endforeach @endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection