관리-도구
편집 파일: active_customer.blade.php
@extends('admin.master_layout') @section('title') <title>{{ __('Active users') }}</title> @endsection @section('admin-content') <div class="main-content"> <section class="section"> <div class="section-header"> <h1>{{ __('Active Users') }}</h1> </div> <div class="section-body"> <div class="row"> {{-- Search filter --}} <div class="col-12"> <div class="card"> <div class="card-body"> <form action="{{ route('admin.active-customers') }}" method="GET" onchange="$(this).trigger('submit')" class="form_padding"> <div class="row"> <div class="col-md-6 form-group"> <input type="text" name="keyword" value="{{ request()->get('keyword') }}" class="form-control" placeholder="{{ __('Search') }}"> </div> <div class="col-md-3 form-group"> <select name="order_by" id="order_by" class="form-control"> <option value="">{{ __('Order By') }}</option> <option value="1" {{ request('order_by') == '1' ? 'selected' : '' }}> {{ __('ASC') }} </option> <option value="0" {{ request('order_by') == '0' ? 'selected' : '' }}> {{ __('DESC') }} </option> </select> </div> <div class="col-md-3 form-group"> <select name="par-page" id="par-page" class="form-control"> <option value="">{{ __('Per Page') }}</option> <option value="10" {{ '10' == request('par-page') ? 'selected' : '' }}> {{ __('10') }} </option> <option value="50" {{ '50' == request('par-page') ? 'selected' : '' }}> {{ __('50') }} </option> <option value="100" {{ '100' == request('par-page') ? 'selected' : '' }}> {{ __('100') }} </option> <option value="all" {{ 'all' == request('par-page') ? 'selected' : '' }}> {{ __('All') }} </option> </select> </div> </div> </form> </div> </div> </div> <div class="col-12"> <div class="card"> <div class="card-body"> <div class="table-responsive table-invoice"> <table class="table table-striped"> <thead> <tr> <th>{{ __('SN') }}</th> <th>{{ __('Name') }}</th> <th>{{ __('Email') }}</th> <th>{{ __('Joined at') }}</th> <th>{{ __('Action') }}</th> </tr> </thead> <tbody> @forelse ($users as $index => $user) <tr> <td>{{ ++$index }}</td> <td>{{ html_decode($user->name) }}</td> <td>{{ html_decode($user->email) }}</td> <td>{{ $user->created_at->format('h:iA, d M Y') }}</td> <td> <a href="{{ route('admin.customer-show', $user->id) }}" class="btn btn-success btn-sm"><i class="fas fa-eye"></i></a> <a onclick="deleteData({{ $user->id }})" href="javascript:;" data-toggle="modal" data-target="#deleteModal" class="btn btn-danger btn-sm"><i class="fas fa-trash"></i></a> </td> </tr> @empty <x-empty-table :name="__('Customer')" route="" create="no" :message="__('No data found!')" colspan="5"></x-empty-table> @endforelse </tbody> </table> </div> @if (request()->get('par-page') !== 'all') <div class="float-right"> {{ $users->onEachSide(0)->links() }} </div> @endif </div> </div> </div> </div> </div> </section> </div> <x-admin.delete-modal /> @push('js') <script> function deleteData(id) { $("#deleteForm").attr("action", '{{ url('/admin/customer-delete/') }}' + "/" + id) } </script> @endpush @endsection