@extends('admin.layout')
@section('content')
{{ __('Name') }}
|
{{ $quote->name }}
|
{{ __('Email') }}
|
{{ $quote->email }}
|
{{ __('Phone') }}
|
{{ __("Call to : ") }} {{ $quote->phone }}
|
{{ __('Country') }}
|
{{ $quote->country }}
|
{{ __('Budget') }}
|
{{ $quote->budget }}
|
{{ __('Skype ID') }}
|
{{ $quote->skypenumber }}
|
{{ __('File') }}
|
@if($quote->file)
Download File
@else
{{ __('No File Available') }}
@endif
|
{{ __('Status') }}
|
@if($quote->status == 0)
Pending
@elseif($quote->status == 1)
Processing
@elseif($quote->status == 2)
Completed
@elseif($quote->status == 3)
Rejected
@endif
|
{{ __('Subject') }}
|
{{ $quote->subject }}
|
{{ __('Description') }}
|
{{ $quote->description }}
|
{{ __('Send Mail') }}
|
{{ __('Send Mail') }}
|
@endsection