@extends('site.master') @section('title','Shop by Brands') @section('content') @include('site.layouts.breadcrumb')
@foreach($ecomBrands as $ecomBrand)
@if(file_exists( public_path().'/uploads/brand/'.$ecomBrand->image ) && !empty($ecomBrand->image))  {{ $ecomBrand->title }} @endif
@endforeach
@stop