@extends('backend.layouts.master') @section('title') Products @endsection @section('main-content') @include('backend.layouts.notification')
Products
@if(count($products)>0) {{-- --}} {{-- --}} @foreach($products as $product) {{-- --}} {{-- --}} @endforeach
ID TitleURLPhoto PriceFileStatus Action
{{ $product->id }} {{ $product->title }}{{ $product->url }} @if($product->photo) {{ $product->photo }} @else avatar.png @endif {{ $product->price }} @if($product->file) Download File @else No File @endif @if($product->status == 'active') {{ $product->status }} @else {{ $product->status }} @endif
@csrf @method('delete')
@else
No products found!!! Please add product
@endif
@endsection