ok
Direktori : /home2/selectio/www/myclassicfit.com/resources/views/admin-views/category/ |
Current File : /home2/selectio/www/myclassicfit.com/resources/views/admin-views/category/payment-view.blade.php |
@extends('layouts.back-end.app') @push('css_or_js') @endpush @section('content') <div class="content container-fluid"> <div class="d-flex flex-wrap gap-2 align-items-center mb-3"> <h2 class="h1 mb-0"> <img src="https://a1tex.in/public/assets/back-end/img/all-orders.png" class="mb-1 mr-1" alt=""> <span class="page-header-title">All</span> Payments proof </h2> </div> <div class="row mt-20" id="cate-table"> <div class="col-md-12"> <div class="card"> <div class="table-responsive"> <table style="text-align: {{Session::get('direction') === "rtl" ? 'right' : 'left'}};" class="table table-hover table-borderless table-thead-bordered table-nowrap table-align-middle card-table w-100"> <thead class="thead-light thead-50 text-capitalize"> <th>Id</th> <th>Order Id</th> <th>Payment Proof</th> <th>Delete</th> </thead> <tbody> @foreach ($payment_details as $user) <tr> <td>{{ $user->id }}</td> <td><span class="badge badge-soft-info fz-12">{{ $user->order_id }}</span></td> <td><a target="_blank" href="{{asset('storage/app/public/payment_proof')}}/{{ $user->file }}"><img class="rounded" width="64" onerror="this.src='{{asset('public/assets/front-end/img/image-place-holder.png')}}'" src="{{asset('storage/app/public/payment_proof')}}/{{ $user->file }}"></a></td> <td> <a class="btn btn-outline-danger btn-sm delete square-btn" href = 'payment_delete/{{ $user->id }}' > <i class="tio-delete"></i> </a> </td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div> </div> @endsection