@extends("admin.template.layout") @section('header') @stop @section('content') @if(check_permission('attribute','Create'))
Create Attribute
@csrf
{{--
--}}

@endif
@if (count($list) > 0) @foreach ($list as $item) @endforeach @else @endif
Attribute ID Name Status Is Active Created Date Action
{{ $i }} {{ $item->attribute_name }} {{$item->attribute_status ? 'Active' :'Inactive'}} {{web_date_in_timezone($item->created_date,'d-M-Y h:i A')}}

No items found

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