@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Attributes']) @endsection @section('content')
@csrf
@foreach($posts as $row) @endforeach
{{ __('Name') }} {{ __('Variations') }} {{ __('Products') }} {{ __('Featured') }} {{ __('Created at') }} {{ __('Action') }}
{{ $row->name }} @foreach($row->childrenCategories as $r) {{ $r->name }} @endforeach {{ $row->parent_variation_count }} @if($row->featured==1) {{ __('Yes') }} @else {{ __('No') }} @endif {{ $row->created_at->diffForHumans() }}
{{ __('Name') }} {{ __('Variations') }} {{ __('Products') }} {{ __('Featured') }} {{ __('Created at') }} {{ __('Action') }}
@endsection @push('js') @endpush