@extends('layouts.admin') @section('title', 'Create Product') @section('content-header', 'All Product') @section('content')
Add Product
@foreach($products as $product) @php if(strpos($product->pic, '.mp4') !== false ){ continue; } $color = $product->active == 0 ? "danger":"success"; @endphp @endforeach
Product Type Name Pic Slug status Delete
{{$product->producttype->name}} @if($product->pic && strlen($product->pic) > 0) @else No Logo Found @endif {{$product->name}} {{$product->slug}} {{$product->active}} Modify
@method("DELETE") @csrf
@endsection @section('js') @endsection