🚀 Update Website catalog category table ui .main #33

pull/36/head
YasinDehfuli 3 months ago
parent 8f84e21992
commit dd0aa14275

@ -32,8 +32,11 @@
</div>
</div>
</form>
<table class="table table-striped table-bordered">
<table class="table table-striped table-bordered text-center mt-3">
<tr>
<th>
#
</th>
<th>
{{__("Title")}}
</th>
@ -49,6 +52,9 @@
</tr>
@foreach($attaches as $q)
<tr>
<td>
{{$q->id}}
</td>
<td>
{{$q->title}}
</td>

@ -124,4 +124,7 @@
{{$invoices->links()}}
</div>
</div>
<a class="btn-add" href="{{route('admin.invoice.create')}}">
<i class="ri-add-line"></i>
</a>
@endsection

@ -45,7 +45,7 @@
<div class="btn-group"
role="group">
<a title="Edit"
class="btn btn-secondary ad-accept-btn"
class="btn btn-primary ad-accept-btn"
href="{{route('admin.props.edit',$p->id)}}">
<i class="ri-edit-2-line"></i>
</a>

@ -5,8 +5,11 @@
@endsection
@section('content')
@include('starter-kit::component.err')
<table class="table table-striped table-bordered">
<table class="table table-striped table-bordered text-center">
<tr>
<th>
#
</th>
<th>
{{__("Question / Answer")}}
</th>
@ -19,6 +22,9 @@
</tr>
@foreach($qs as $q)
<tr>
<td>
{{$q->id}}
</td>
<td>
{{$q->body}}
<hr>

Loading…
Cancel
Save