@extends('layouts.admin') @section('title', 'Sections') @section('page-title', 'Sections') @push('styles') @endpush @section('content') All Sections Add Section ID Title Products Actions @foreach($sections as $section) {{ $section->id }} {{ $section->title }} @if($section->description) {{ \Illuminate\Support\Str::limit($section->description, 80) }} @endif {{ $section->products_count }} @csrf @method('DELETE') @endforeach @endsection @push('scripts') @endpush