mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.4 KiB
PHTML
67 lines
2.4 KiB
PHTML
|
|
@extends('admin.adminlayout')
|
|
@section('page_title')
|
|
{{__("Transports")}}
|
|
-
|
|
@endsection
|
|
@section('content')
|
|
<div class="container">
|
|
|
|
@include('starter-kit::component.err')
|
|
<form action="{{route('admin.transport.bulk')}}" method="post" class="bulk-action">
|
|
@csrf
|
|
<table class="table table-striped table-bordered ">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th>
|
|
<input type="checkbox" class="chkall"/>
|
|
</th>
|
|
<th>
|
|
{{__("Title")}}
|
|
</th>
|
|
<th>
|
|
{{__("Price")}}
|
|
</th>
|
|
<th>
|
|
{{__("Action")}}
|
|
<a href="{{route('admin.transport.create')}}" class="btn btn-success float-start"><i
|
|
class="fa fa-plus"></i></a>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($transports as $n)
|
|
<tr>
|
|
<td>
|
|
<input type="checkbox" name="id[]" value="{{$n->id}}" class="m-2 chkbox"/>
|
|
{{$n->id}}
|
|
</td>
|
|
<td>
|
|
{{__($n->title)}}
|
|
</td>
|
|
<td>
|
|
{{number_format($n->price)}}
|
|
</td>
|
|
<td>
|
|
<a href="{{route('admin.transport.edit',$n->id)}}" class="btn btn-primary">
|
|
<i class="fa fa-edit"></i>
|
|
{{__("Edit")}}
|
|
</a>
|
|
<a href="{{route('admin.transport.delete',$n->id)}}"
|
|
class="btn btn-danger delete-confirm">
|
|
<i class="fa fa-times"></i>
|
|
{{__("Delete")}}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
@include('starter-kit::component.bulk',['actions' => []])
|
|
</form>
|
|
<div class="text-center pt-3">
|
|
{{$transports->links()}}
|
|
</div>
|
|
</div>
|
|
@endsection
|