@extends('layouts.admin.app') @section('content') {{----}} @if( Session::get('permissions.user_type') == 'A' || Session::get('permissions.user_type') == 'SA') Addon Mapping Back @foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg)) {{ Session::get('alert-' . $msg) }} @endif @endforeach @csrf Addon Mapping Edit Addon Group* Select Addon Group @foreach ($addon_group as $list) @if ($dataDetails->addon_group_id == $list->id) @else @endif {{ $list->title }} @endforeach Addon Sub Group* Select Addon Sub Group @foreach ($addon_sub_group as $list) @if ($dataDetails->addon_sub_group_id == $list->id) @else @endif {{ $list->name }} @endforeach Product* Select Product @foreach ($product as $list) @if ($dataDetails->product_id == $list->id) @else @endif {{ $list->product_name }} @endforeach Sl No @endif @endsection