@extends('admin.layout') @section('content')

{{ trans('Domain List') }} {{ trans('Domain List') }}...

@php $getUserRoleData = userRoleData(); $LeadSources = explode(",",$getUserRoleData->LeadSources); @endphp
@if(in_array("Add",$LeadSources )) @endif
@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
@if(in_array("View",$LeadSources)) @if(in_array("Edit",$LeadSources ) || in_array("Delete",$LeadSources)) @endif @if(count((array) $result['getDomains'])>0) @foreach ($result['getDomains'] as $rsVal) @if($rsVal->type == "Testing") @else @endif @if(in_array("Edit",$LeadSources) || in_array("Delete",$LeadSources)) @endif @endforeach @else @endif
{{ trans('ID') }} {{ trans('Name') }}{{ trans('Action') }}
{{ $rsVal->id }}{{ $rsVal->name }} {{ $rsVal->type }}{{ $rsVal->name }} @if(in_array("Edit",$LeadSources)) @endif @if(in_array("Delete",$LeadSources)) @endif
No record found
@else

Please contact with SuperAdmin

@endif
@endsection