@extends('admin.layouts.app') @section('title', 'Attribute Values') @section('content')

{{__('Attribute Values')}}

{{__('All Attribute Values listing')}}

@if (Session::has('message'))
{{ Session::get('message') }}
@endif @if(!empty($attribute_values)) @php $i=1; @endphp @foreach($attribute_values as $datas) @php $i++; @endphp @endforeach @else @endif
{{__('ID')}} {{__('Attribute Label')}} {{__('Name')}} {{__('Arabic Name')}} {{__('Date')}} {{__('Status')}} {{__('Action')}}
{{$i}} {{@$datas->attributes->title}} {{$datas->title}} {{$datas->arabic_title}} {{ dateConvertFormat($datas->created_at) }} @if($datas->status=='1') Activated @else De-Activated @endif Edit Delete
{{__('No record found')}}
@endsection