@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Variations']) @endsection @section('content')
@csrf
@foreach($posts as $row) @endforeach
{{ __('Name') }} {{ __('Product Count') }} {{ __('Attribute') }} {{ __('Featured') }} {{ __('Created at') }} {{ __('Action') }}
{{ $row->name }} {{ $row->variations_count }} {{ $row->parent->name ?? '' }} @if($row->featured==1) {{ __('Yes') }} @else {{ __('No') }} @endif {{ $row->created_at->diffForHumans() }}
{{ __('Name') }} {{ __('Product Count') }} {{ __('Attribute') }} {{ __('Featured') }} {{ __('Created at') }} {{ __('Action') }}
Note: {{ __('Before Delete Any Item Please Make Sure Product Count Must Be "0" Otherwise Product Will Not Append On Your Site') }}
@endsection @push('js') @endpush