@extends('admin') @section('content')
Product Sizes {!!link_to_route('productsize.create','',['pid'=>$pid],['class'=>'glyphicon-plus btn btn-xs btn-primary pull-right'])!!}
@foreach($productSize as $row) @endforeach
S.No Size Price Old Price Price Comment Action
{{$i++}} {{ $row->title}} {{ $row->price}} {{ $row->old_price}} {{ $row->price_comment}} {!! link_to_route('productsize.edit',' Edit',$row->id,['class'=>'glyphicon glyphicon-pencil btn btn-xs btn-primary']) !!} {!! link_to_route('productsize.destroy',' Delete',$row->id,['data-method'=>'delete','class'=>'glyphicon glyphicon-pencil btn btn-xs btn-danger']) !!}
@stop