🚀 Update Website catalog category table ui .main #33

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

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

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

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

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

Loading…
Cancel
Save