⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.94
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
hrms.dev-unit.com
/
resources
/
views
/
coupon
/
View File Name :
view.blade.php
@extends('layouts.admin') @push('script-page') @endpush @section('page-title') {{ __('Manage Coupon Detail') }} @endsection @section('breadcrumb') <li class="breadcrumb-item"><a href="{{ route('dashboard') }}">{{ __('Home') }}</a></li> <li class="breadcrumb-item"><a href="{{ route('coupons.index') }}">{{ __('Coupon list') }}</a></li> <li class="breadcrumb-item">{{ __('Coupon Used List') }}</li> @endsection @section('content') <div class="row"> <div class="col-xl-12"> <div class="card"> <div class="card-header card-body table-border-style"> <h5></h5> <div class="table-responsive"> <table class="table" id="pc-dt-simple"> <thead> <tr> <th> {{ __('User') }}</th> <th width="200px"> {{ __('Date') }}</th> </tr> </thead> <tbody> @foreach ($userCoupons as $userCoupon) <tr class="font-style"> <td>{{ !empty($userCoupon->userDetail) ? $userCoupon->userDetail->name : '-' }}</td> <td>{{ $userCoupon->created_at }}</td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div> </div> @endsection