@extends('layouts.app') @section('title', 'Manajemen Merk') @section('breadcrumb') @endsection @section('content')
Reset
@forelse($brands as $brand) @empty @endforelse
# Nama Merk Status Jumlah Model Aksi
{{ $loop->iteration + ($brands->currentPage() - 1) * $brands->perPage() }} {{ $brand->name }} @if($brand->is_active) Aktif @else Nonaktif @endif {{ $brand->device_models_count }}
@csrf @method('DELETE')
Tidak ada data
@endsection