PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
resources
/
views
/
admin
/
fashionNft
@extends('admin.layouts.app') @section('panel') <div class="row"> <div class="col-lg-12"> <div class="card b-radius--10 "> <div class="card-body p-0"> <div class="table-responsive--sm table-responsive"> <table class="table table--light style--two"> <thead> <tr> <th>@lang('Bid Placed By')</th> <th>@lang('Item')</th> <th>@lang('Price')</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)}}" target="_blank"> {{str_limit($bid->fashionNft->name, 20)}} </a> </td> <td data-label="@lang('Price')"> <strong>{{showAmount($bid->price)}} {{__($general->cur_text)}}</strong> </td> <td data-label="@lang('Status')"> @if($bid->status == 0) <span class="badge badge--primary">@lang('Not Selected')</span> @elseif($bid->status == 1) <span class="badge badge--success">@lang('Winner')</span> @endif </td> </tr> @empty <td>No. Bids Listed</td> @endforelse @endisset </tbody> </table> </div> </div> </div> </div> </div> @endsection
[-] orderList.blade.php
[edit]
[+]
..
[-] index.blade.php
[edit]
[-] detail.blade.php
[edit]
[-] bids.blade.php
[edit]
[-] status.blade.php
[edit]