@extends('layouts.app') @section('css') @endsection @section('content')

Products

@if (session('success'))
 {{ session('success') }}
@endif

@foreach ($products as $item) @if(auth()->user()->type == "admin" || $item->tax != 1) @endif @endforeach
TİTLE CATEGORY UNİT PRİCE CRİTİCAL STOCK TOTAL STOCK ACTİONS
{{$item->title}} {{$item->category}} {{$item->unit}} {{$item->price}} Critical Stock:{{$item->critical_stock}} Total Stock:{{$item->total_stock}}
@endsection @section('js') @endsection