@extends('admin.layout') @section('title', 'Home Jasa') @section('subtitle', 'Pilih jasa yang tampil di halaman home customer') @section('content')
@csrf @method('PUT')
Terpilih saat ini: {{ $selected->count() }} jasa. Angka di sebelah kanan menentukan urutan tampil (kecil = duluan).
@if ($selected->isNotEmpty())

Pratinjau urutan di home

@foreach ($selected as $i => $item) {{ $i + 1 }} {{ $item->name }} @endforeach
@endif
@foreach ($categories as $category)

{{ $category->name }}

{{ $category->children->where('show_on_home', true)->count() }} / {{ $category->children->count() }}
@forelse ($category->children as $service) @empty

Belum ada service di kategori ini.

@endforelse
@endforeach
@endsection