@extends('layouts.app')
@section('title', 'Admin Panel')
@section('content-page')
| Sr No |
Name |
Size |
Status |
Action |
@forelse($capillaries as $index => $item)
| {{ $index + 1 }} |
{{ $item->name }} |
{{ $item->size }} |
{{ ucfirst($item->status) }}
|
|
@empty
| No data available |
@endforelse
@endsection