@extends('layouts.app') @section('content')
@if($shop->shop_id == '')
Add New Shop
@else
Update Shop
@endif
@csrf
Shop Code
Shop Name
Shop Channel
@foreach($channel_items as $channel_item)
channel_id== $shop->channel_id ? 'selected':''}} >{{$channel_item->channel_name}}
@endforeach
Shop Class
@foreach($class_items as $class_item)
{{$class_item->class_name}}
@endforeach
Shop Category
Select Value
@foreach($cate_items as $cate_item)
channel_id == $shop->channel_id ? 'selected' : ''}}>{{$cate_item->shop_category_name}}
@endforeach
Shop Sub Category
Shop Address
Shop Description
{{$shop->shop_description??''}}
Shop Status
Active
Non Active
Shop Owner Name
Shop Owner Phone
Shop Owner Status
Filler
Non Filler
@endsection