@extends('../../master_layout/admin_master') @section('title') {{config('constants.APP_NAME')}} Auction - Auto Settings @endsection @section('content')

Auction - Auto Settings - @if(isset($city) && !empty($city)) {{$city->city_name}} @endif {{$country->country_name}}

@if(session('message'))
@if(session('message.type')=='danger')

Sorry! {!! session('message.text') !!}

@else

Success! {!! session('message.text') !!}

@endif
@endif
@csrf
SPOT Listing Days Bid Start Price Next Bid Price addition Action
@if ($errors->has('spot')) {{ $errors->first('spot') }} @endif @if ($errors->has('display_duration')) {{ $errors->first('display_duration') }} @endif @if ($errors->has('auction_start_price')) {{ $errors->first('auction_start_price') }} @endif @if ($errors->has('bid_price_addition')) {{ $errors->first('bid_price_addition') }} @endif

Auto Auction Settings

System will create auto auction for below SPOTs and settings.
If any auction running for SPOT then Bid start will be 3 days after current auction expiry, else Bid start will be from tomorrow date.
@if(isset($auction_auto_settings) && !empty($auction_auto_settings)) @foreach($auction_auto_settings as $setting) @endforeach @endif
SPOT Listing Days Bid Start Price Next Bid Price addition Action
{{ $setting->spot }} {{ $setting->display_duration }} {{ $setting->auction_start_price }} {{ $setting->bid_price_addition }}   Delete
@endsection @section('custom_js') @endsection