Files
numstation-web/resources/views/themes/tailwind/settings/my-enquiries.blade.php
2023-12-22 12:35:55 +08:00

47 lines
2.6 KiB
PHP

@extends('theme::user.layouts.app')
@section('content')
<div class="col">
<div class="row" style="margin: 0px;">
<div class="col-xxl-6 flex justify-start items-center" style="margin-top: 5px;margin-bottom: 20px;">
<h1 style="white-space: nowrap;font-size: 24px;text-align: left;color: rgb(7,7,7);">My Enquiries</h1>&emsp;
</div>
<div class="col-xxl-6 flex justify-end" align="right" style="margin-top: 5px;margin-bottom: 20px">
<a href="/setting/main" class="btn red-btn">Back</a>
</div>
</div>
</div>
<div class="col">
<div class="row">
@foreach($enquiry_list as $enquiry)
<div class="col-xxl-3">
<div class="card w-full" style="border-bottom-right-radius: 35px;border-top-left-radius: 35px;">
<div class="card-body scstyle-15" style="overflow: auto;height: 200px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; padding: 0px;">
<div class="flex justify-start items-center mt-4">
<label class="pl-5"><u><strong>{{ $enquiry->title }}</strong></u></label>
<div class="flex ml-auto">
<div class="flex justify-end">
<svg class="max-w-full h-auto pr-2" width="24" height="24" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
<path d="M11.6924 19.3848C15.9408 19.3848 19.3848 15.9408 19.3848 11.6924C19.3848 7.44402 15.9408 4 11.6924 4C7.44402 4 4 7.44402 4 11.6924C4 15.9408 7.44402 19.3848 11.6924 19.3848Z" stroke="#009B9A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20.8267 20.8257L18.4229 18.4219" stroke="#009B9A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
</div>
<div class="flex ml-3 mr-3 pt-3">
<small>Submitted date: {{ $enquiry->created_at }}</small>
</div>
<div class="flex justify-end ml-3 mr-3 pt-20">
<div class="px-2 py-2" style="margin-top: -15px;border-radius: 25px; background-color: #D6DEE9;">
<h2 style="font-size: 20px;">Waiting for reply</h2>
</div>
</div>
</div>
</div>
</div>
@endforeach
</div>
</div>
@endsection