@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Create Order']) @endsection @section('content') @php $url=domain_info('full_domain'); @endphp

@foreach($posts as $row) @php $price=amount_format($row->price->price); $qty=$row->stock->stock_qty; $term_id=$row->id; @endphp @csrf @endforeach
{{ __('Id') }} {{ __('Name') }} {{ __('Price') }} {{ __('Variation') }} {{ __('Options') }} {{ __('Cart') }}
#{{ $row->id }} {{ Str::limit($row->title,50) }} {{ $price }} @if(count($row->options) > 0) @endif
stock->stock_manage == 1) max="{{ $row->stock->stock_qty }}" min="0" @endif required="" value="1" name="qty">
@endsection @push('js') @endpush