48 lines
2.6 KiB
PHP
48 lines
2.6 KiB
PHP
@extends('admin.layouts.app')
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
@include('admin.partial.list-filter', ['filterRoute' => 'subscribe-plans.index'])
|
|
<div id="datatable_wrapper" class="dataTables_wrapper dt-bootstrap4 no-footer">
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<table id="datatable" class="table table-bordered dt-responsive nowrap dataTable no-footer dtr-inline" style="border-collapse: collapse; border-spacing: 0px; width: 100%;" role="grid" aria-describedby="datatable_info">
|
|
<thead>
|
|
<tr role="row">
|
|
<th>نام پلن</th>
|
|
<th>قیمت</th>
|
|
<th>عملیات</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($subscribePlans as $item)
|
|
<tr>
|
|
<td>{{ $item->name }}</td>
|
|
<td>{{ $item->price }}</td>
|
|
<td>
|
|
<form action="{{ route('subscribe-plans.destroy', $item->id) }}" method="POST" style="display: inline;">
|
|
@csrf
|
|
@method('DELETE')
|
|
<button type="submit" class="btn btn-danger waves-effect waves-light" onclick="return confirm('آیا مطمئنید که میخواهید این کتاب را حذف کنید؟')">حذف</button>
|
|
</form>
|
|
<a href="{{route('subscribe-plans.edit',$item->id)}}" type="button" class="btn btn-primary waves-effect waves-light">ویرایش</a>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="d-flex justify-content-center mt-3">
|
|
{{ $subscribePlans->withQueryString()->links() }}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |