Current File : /home/tradevaly/www/resources/views/backend/pages/users/view_buy_offer.blade.php
@extends('backend.ayaan.master')

@push('title') Buy Offers @endpush
@section('css')
    <!-- DataTables -->
    <link href="{{ asset('/assets/libs/datatables/datatables.min.css') }}" rel="stylesheet" type="text/css" />
    <link href="{{ asset('/assets/libs/bootstrap-datepicker/bootstrap-datepicker.min.css') }}" rel="stylesheet"
        type="text/css">
@endsection
@section('content')
    <div class="row">
        <div class="col-md-12">
            <div class="card">
                <div class="card-header">
                    @if(isset($offer->product->slug))
                    Inquery For <a href="{{route('product.view',$offer->product->slug)}}" target="_blank">{{$offer->product->title}}</a>
                    @endif
                </div>
            </div>
            <div class="card-body">
                <div class="row">
                    <div class="col-md-6">
                        <h4>Sender</h4>
                        <hr>
                        <strong>Name</strong>
                        <p>{{$offer->buyer->user->name}}</p>
                        <strong>Company Name</strong>
                        <p>{{$offer->buyer->name}}</p>
                        <strong>Phone</strong>
                        <p>{{$offer->buyer->phone}}</p>
                        <strong>Email</strong>
                        <p>{{$offer->buyer->user->email}}</p>
                    </div>
                    <div class="col-md-6">
                        <h4>Reciver</h4>
                        <hr>
                        <strong>Name</strong>
                        <p>{{$offer->sellerUser->name}}</p>
                        <strong>Company Name</strong>
                        <p>{{$offer->seller->name}}</p>
                        <strong>Phone</strong>
                        <p>{{$offer->seller->phone}}</p>
                        <strong>Email</strong>
                        <p>{{$offer->sellerUser->email}}</p>
                    </div>
                </div>
                <hr>
                <div class="row">
                    <div class="col-md-12">
                        <h4>Details:</h54>
                    </div>
                    <div class="col-md-12">
                        <h5>Title:</h5>
                        <p>{{$offer->title}}</p>
                        <h5>Details:</h5>
                        <p>{{$offer->details}}</p>
                    </div>
                </div>
            </div>
            <!-- end card -->
        </div>
    </div>
    <!-- end row -->

@endsection