@extends("admin.template.layout") @section('header') @stop @section('content')
@if ( GetUserPermissions("masters_create") )
Create Attribute
@csrf
You can select multiple categories

@endif
@if (count($list) > 0) @foreach ($list as $item) @endforeach @else @endif
Attribute ID Category Name Status Is Active Created Date Action
{{ $i }} @if ($item->category_ids && count($item->category_ids) > 0) @foreach ($item->category_ids as $catId) @php $category = \App\Models\Categories::find($catId); @endphp @if ($category) {{ $category->name }} @endif @endforeach @else Global @endif {{ $item->attribute_name }} {{$item->attribute_status ? 'Active' :'Inactive'}} {{ get_date_in_timezone($item->created_date, config('global.datetime_format')) }}

No products found

{!! $list->links('admin.template.pagination') !!}
@stop @section('script') @stop