PATH:
home
/
lab2454c
/
sportsnovate.com
/
backups
/
core
/
resources
/
views
/
templates
/
basic
/
user
/
fashionNft
@extends($activeTemplate.'layouts.frontend') @section('content') <section class="dashboard-section pt-60 pb-60"> <div class="container"> <div class="pt-60 pb-60"> <div class="row"> <div class="col-xl-3"> @include($activeTemplate . 'partials.sidebar') </div> <div class="col-xl-9"> <div class="mb-4 d-xl-none text-end"> <div class="sidebar__init"> <i class="las la-columns"></i> </div> </div> <table class="table cmn--table"> <thead> <tr> <th>@lang('Bid Placed By')</th> <th>@lang('Item')</th> <th>@lang('Bid Price')</th> <th>@lang('Bid Time')</th> <th>@lang('Status')</th> </tr> </thead> <tbody> @isset($bids) @forelse($bids as $bid) <tr> <td data-label="@lang('Bid Placed By')">{{ $bid->user->fullname }}</td> <td data-label="@lang('Item')"> <a href="{{route('fashionNftDetails', $bid->fashionNft->id)}}"> {{ $bid->fashionNft->name }} </a> </td> <td data-label="@lang('Bid Price')">{{__($general->cur_sym)}}{{ $bid->price }}</td> <td data-label="@lang('Bid Time')">{{$bid->created_at->diffForHumans()}}</td> <td data-label="@lang('Status')"> @if($bid->status == 1) <span class="badge badge--success">@lang('Winner')</span> @else <span class="badge badge--primary">@lang('Not Selected')</span> @endif </td> @if($bid->status == 1 && (isset($bid->nftOrder) ? $bid->nftOrder->status == 0 : 1)) <td width="22%"> <span> Your Bid has been selected as winner. Please Pay through this link: <i class="las la-info-circle" data-toggle="tooltip" data-placement="top" style="font-size: 18px;cursor: pointer;" title="4% Extra changes is added"></i> </span> @php $finalPrice = $bid->price + ($bid->price * (4/100)); session()->put('finalPrice', $finalPrice); session()->put('bid_id', ($bid->id)); @endphp <form method="GET" action="{{ route('user.nft.order.payment') }}"> <button class="btn__global mt-2" style="color: #fff !important"> @lang('Pay') {{__($general->cur_sym)}}{{ $finalPrice }} </button> </form> </td> @endif </tr> @empty <tr> <td colspan="100%" class="text-center">{{$emptyMessage}}</td> </tr> @endforelse @endisset </tbody> </table> </div> </div> </div> </div> </section> @endsection
[+]
image
[-] form.blade.php
[edit]
[-] create.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] index.blade.php
[edit]
[-] bidList.blade.php
[edit]
[+]
payment
[+]
order