| Current Path : /home/users/unlimited/www/foodbank.codeskitter.site/resources/views/admin/withdraw/ |
| Current File : /home/users/unlimited/www/foodbank.codeskitter.site/resources/views/admin/withdraw/index.blade.php |
@extends('admin.layouts.master')
@section('main-content')
<section class="section">
<div class="section-header">
<h1>{{ __('withdraw.withdraw') }}</h1>
{{ Breadcrumbs::render('withdraw') }}
</div>
<div class="section-body">
<div class="row">
<div class="col-12">
<div class="card">
@can('withdraw_create')
<div class="card-header">
<a href="{{ route('admin.withdraw.create') }}" class="btn btn-icon icon-left btn-primary"><i class="fas fa-plus"></i> {{ __('withdraw.add_withdraw') }}</a>
</div>
@endcan
<div class="card-body">
<div class="table-responsive">
<table class="table table-striped" id="maintable" data-url="{{ route('admin.withdraw.get-withdraw') }}">
<thead>
<tr>
<th>{{ __('levels.id') }}</th>
<th>{{ __('levels.name') }}</th>
<th>{{ __('withdraw.payment_type') }}</th>
<th>{{ __('levels.date') }}</th>
<th>{{ __('levels.amount') }}</th>
<th>{{ __('levels.actions') }}</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
@endsection
@section('css')
<link rel="stylesheet" href="{{ asset('assets/modules/datatables.net-bs4/css/dataTables.bootstrap4.min.css') }}">
<link rel="stylesheet" href="{{ asset('assets/modules/datatables.net-select-bs4/css/select.bootstrap4.min.css') }}">
@endsection
@section('scripts')
<script src="{{ asset('assets/modules/datatables/media/js/jquery.dataTables.min.js') }}"></script>
<script src="{{ asset('assets/modules/datatables.net-bs4/js/dataTables.bootstrap4.min.js') }}"></script>
<script src="{{ asset('assets/modules/datatables.net-select-bs4/js/select.bootstrap4.min.js') }}"></script>
<script src="{{ asset('js/withdraw/index.js') }}"></script>
@endsection