@extends('layouts.AdminMaster') @section('content')

Edit selling price on {{$store->name}} store.

@foreach($store->item_store as $items) {!! Form::open(['route'=>['admin.storeitems.update', $items->item_store_id], 'method'=>'PUT']) !!} {!! Form::close() !!} @endforeach
Picture Name Price Purchased Price Status Action
{!! Html::image('img.veg/'.App\item::find($items->item_id)->picture, App\item::find($items->item_id)->name ,array('class'=>'itemimg')) !!} {{ App\item::find($items->item_id)->name }}
@endsection