@extends('admin.layouts.master') @section('title') {{ translate(' Profile Attributes - List') }} @endsection @section('content')
{{ translate(' List View') }}
{{ translate(' Profile Attributes') }}
@foreach($attributes as $attribute)
@csrf

{{ ucfirst($attribute->attribute_name) }}

status ? 'checked' : '' }}>
@php $check=count($attribute->metas); @endphp @if ($check > 0) @foreach($attribute->metas as $attribute_data) @if ($attribute_data->is_delete !='1')
  • @if($permissionForProfileAttributes !== null && $permissionForProfileAttributes->can_delete == '1') @endif
@endif @endforeach @else
  • @if($permissionForProfileAttributes !== null && $permissionForProfileAttributes->can_delete == '1') @endif
@endif
@if($permissionForProfileAttributes !== null && $permissionForProfileAttributes->can_create == '1') @endif @if($permissionForProfileAttributes !== null && $permissionForProfileAttributes->can_edit == '1') @endif
@endforeach
@endsection @section('scripts') @endsection @section('header-between') @endsection