@extends('frontend.layouts.master') @section('title') Products @endsection @section('main-content')
{{--
1-9 of 50 results
--}}
    @if($products) @foreach($products as $product)
  • @php $photo=explode(',',$product->photo); @endphp {{ Storage::url($product->photo) }}

    {{$product->title}}

    {{$product->price}}

    {{-- @if($product->file) Download File @else No File @endif --}}
  • @endforeach @endif
@endsection