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