@extends('adminlayout.dashadmin') @section('content')
{{-- New Accessories Type Product List --}}


Add Accessories

@csrf
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('item_warranty')){{ $errors->first('item_warranty') }}@endif
@if ($errors->has('item_color')){{ $errors->first('item_color') }}@endif
@if ($errors->has('dealer_price')){{ $errors->first('dealer_price') }}@endif
@if ($errors->has('subdealer_price')){{ $errors->first('subdealer_price') }}@endif
@if ($errors->has('customer_price')){{ $errors->first('customer_price') }}@endif

ACCESSORY ITEM LIST

@php $i=1; @endphp @foreach($items as $data) @php $i++; @endphp @endforeach
S.no Name Warranty Color Price CREATED AT Action
{{$i}} Delete Edit
@endsection