@extends('admin.layouts.main') @section('style') @endsection @section('content')

Microsite Products

{{-- Link Products Form --}}
@csrf
{{-- Search form --}}
{{-- Linked Products List --}} @forelse($products as $product) @empty @endforelse
ID Product Name Category Brand Action
{{ $product->id }} {{ $product->product_name }} {{ $product->category->name }} {{ $product->brand->name }}
@csrf
No products linked.
{{-- Pagination --}} {{ $products->links() }}
@endsection @section('script') @endsection