@extends('layouts.admin.base-dashboard')
@section('title', 'Daftar Capster')
@section('content')
@include('layouts.admin.include.message')
No |
Nama Lengkap |
Nomor Handphone |
Status |
Tindakan |
@foreach ($capsters as $capster)
{{ $loop->iteration }} |
{{ $capster->name }} |
{{ $capster->phone }} |
{{ $capster->status == 'inactive' ? 'Inactive' : 'Active' }}
|
Edit
|
@endforeach
@endsection