@extends('admin.template.master') @section('stylesheets') {!! Html::style('assets/admin/bower_components/select2/dist/css/select2.min.css') !!} @endsection @section('title') Shipping Charge Filter insert and update Shipping Charge Filter Home Shipping Charge Filter Update @endsection @section('main-content') @if(Session::has('message')) × {{Session('message')}} @endif Update {!! Form::open(['method' => 'post', 'url' => '/admin/shipping-charge-filter-update/']) !!} + Add More Item Type Attribute Set Attribute Shipping Charge @if(count($shipping_filters) > 0) @foreach ($shipping_filters as $filter) Select Item Type @foreach ($item_types as $main => $item_type) item_type_id == $main ? 'selected' : '' }}>{{$item_type}} @endforeach {{$filter->attribute_set_name}} {{$filter->attribute_name}} Select Shipping Charge @foreach ($shp_Chrgs as $main1 => $shpChrg) shipping_charge_id == $main1 ? 'selected' : '' }}>{{$shpChrg}} @endforeach @endforeach @else Select Item Type @foreach ($item_types as $main => $item_type) {{$item_type}} @endforeach Select Attribute Set Select Attribute Select Shipping Charge @foreach ($shp_Chrgs as $main1 => $shpChrg) {{$shpChrg}} @endforeach @endif {!! Form::close() !!} @endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!} {!! Html::script('assets/admin/bower_components/ckeditor/ckeditor.js') !!} @endsection
+ Add More