@extends('admin.layouts.master') @section('title') Products @endsection @section('css') @endsection @section('content')
Add New Product
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($products as $product) @endforeach
Image Name Slug Description SKU Category Brand Status Actions
{{ $product->localized_name }} {{ $product->slug() }} {{ Str::limit($product->short_description_en, 30) }} {{ $product->SKU }} {{ $product->categories->pluck('name')->join(', ') }} {{ $product->brand->name ?? '-' }}
{{ $product->is_published ? 'Published' : 'Unpublished' }}
Edit
@csrf @method('DELETE')
{{ $products->links() }}
@endsection @section('js') @endsection