@extends('layouts.admin-layout') @section('title', 'All Products ') @section('content')

Blend Section

@foreach($blends as $key => $blend) @endforeach
# Photo Name Price Created Action
{{ $key + 1 }} @if($blend->blendImage()) @else N/A @endif {{ $blend->name }} {{ $blend->price }} {{ $blend->created_at->format('d M Y') }} Edit
@csrf @method('DELETE')
@endsection @section('script') @endsection