@extends('backend.layouts.app') @section('title', 'products') @section('content')

Products List

@foreach ($products as $prod) @endforeach
# Image Title Status Action
{{ $prod->id }} @if (Storage::disk('public')->exists('products/' . $prod->image)) {{ $prod->title }} @endif {{ $prod->title }} {{ $prod->status == true ? 'On' : 'Off' }} add edit
@endsection @push('scripts') @endpush