@extends('admin.layouts.app') @section('title', 'প্রোডাক্ট অ্যাট্রিবিউট সমূহ') @section('page-title', 'প্রোডাক্ট অ্যাট্রিবিউট সমূহ') @section('content') {{-- Flash Message --}} @if(session('success')) @endif {{-- Product Attributes Table --}}
অ্যাট্রিবিউট তালিকা
নতুন অ্যাট্রিবিউট
@forelse($attributes as $attribute) @empty @endforelse
# নাম মান সমূহ অ্যাকশন
{{ $loop->iteration + ($attributes->currentPage() - 1) * $attributes->perPage() }} {{ $attribute->name }} @if($attribute->values && count($attribute->values) > 0) @foreach($attribute->values as $value) {{ $value->value }} @endforeach @else -- @endif
@csrf @method('DELETE')
কোনো অ্যাট্রিবিউট পাওয়া যায়নি
{{-- Pagination --}}
{{ $attributes->links() }}
@endsection