Edit File: offers_price.blade.php
<div class="col-md-12 col-12"> <div class="card"> <div class="card-header"> <h4 class="card-title"> <i class="fa fa-dollar"></i> {{ __('admin.provided_price_offers') }} </h4> </div> <hr> <div class="card-content"> <div class="card-body"> @if ($order->priceoffers()->exists()) <table class="table"> <thead> <tr> <th>{{ __('admin.provider') }}</th> <th>{{ __('admin.price') }}</th> <th>{{ __('admin.notes') }}</th> </tr> </thead> <tbody> @foreach ($order->priceoffers as $offer) <tr> <td>{{ $offer?->provider?->name }}</td> <td>{{ number_format($offer->price, 2) . ' ' . __('site.currency') }}</td> <td>{{ $offer->notes }}</td> </tr> @endforeach </tbody> </table> @else <p class=" text-center">{{ __('admin.no_provided_offer_price') }} <i class="fa fa-frown-o"></i></p> @endif </div> </div> </div> </div>
Back to File Manager