@extends('layout.app') @section('content')
ID | Company Name | Contact Person | Phone Number | Address | Document | Action | |
---|---|---|---|---|---|---|---|
{{ $loop->iteration }} | {{ $row->company_name }} | {{ $row->contact_person }} | {{ $row->email }} | {{ $row->phone_no }} | {{ $row->address }} |
@php
$isS3 = checkSettings('store_image_to_s3') === 'enable';
$imgUrl = $isS3
? $row->document // assume full URL from S3
: (!empty($row->document) ? asset('storage/bandProvider/' . $row->document) : null);
@endphp
@if($imgUrl)
Image Not Provided@endif |
{{--
|