@extends('layouts.app') @section('title', $category->name) @section('description', $category->tagline) @section('content')

{{ $category->name }}

@if ($category->tagline)

{{ $category->tagline }}

@endif
@if ($products->isEmpty())

{{ __('cart.empty') }}

@else
@foreach ($products as $product) @endforeach
{{ $products->links() }}
@endif
@endsection