PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
resources
/
views
/
admin
/
fashionNft
@extends('admin.layouts.app') @section('panel') <div class="row mb-none-30"> <div class="col-lg-4 col-md-4 mb-30"> <div class="card b-radius--10 overflow-hidden box--shadow1"> <div class="card-body"> <h5 class="mb-20 text-muted">@lang('Product Image')</h5> <div class="p-3 bg--white text-center"> @php $productImage = $nft->fashionNftImages->first(); if (isset($productImage)) { $imageName = explode('.', $productImage->file); $ext = $imageName[count($imageName) - 1]; } @endphp @if(isset($productImage)) @if($ext == 'mp4' || $ext == 'mov') <video width="300" height="250" controls> <source src="{{ asset('assets/images/fashionNft/'.$productImage->file) }}" type="video/mp4"> Your browser does not support the video tag. </video> @else <img src="{{ getImage(imagePath()['fashionNft']['path'].'/'.$productImage->file,imagePath()['fashionNft']['size'])}}" alt="@lang('product')" /> @endif @endif </div> <h5 class="mb-20 text-muted">@lang('Name') </h5> <span class="mb-10 text-muted">{{__($nft->name)}}</span> </div> </div> </div> <div class="col-lg-8 col-md-8 mb-30"> <div class="card b-radius--10 overflow-hidden box--shadow1"> <div class="card-body"> <h5 class="card-title border-bottom pb-2">@lang('Product Information')</h5> <ul class="list-group"> <li class="list-group-item d-flex justify-content-between align-items-center"> @lang('Amount') <span class="font-weight-bold">{{getAmount($nft->amount)}} {{$general->cur_text}}</span> </li> <li class="list-group-item d-flex justify-content-between align-items-center"> @lang('Closing Date') <span class="font-weight-bold">{{showDateTime($nft->time_duration, 'd M Y')}}</span> </li> <li class="list-group-item d-flex justify-content-between align-items-center"> @lang('Status') @include('admin.fashionNft.status') </li> </ul> <h6 class="mt-4">Description</h6> <div class="mt-3"> @php echo $nft->description @endphp </div> </div> </div> </div> </div> @endsection @push('style') <style> .product-image { width: 100%; height: 260px; object-fit: cover; object-position: center; } </style> @endpush
[-] orderList.blade.php
[edit]
[+]
..
[-] index.blade.php
[edit]
[-] detail.blade.php
[edit]
[-] bids.blade.php
[edit]
[-] status.blade.php
[edit]