@extends('admin.master')
@section('main_content')
All users
you can add, edit and delete any of these data.
|
|
SN |
Name |
Email |
Status |
Action
|
Delete
|
@foreach($data as $item)
| {{$loop->iteration}} |
{{$loop->iteration}} |
{{$item->name}} |
{{$item->email}} |
{{$item->active}} |
|
{{--
Edit
--}}
Delete
|
@endforeach
@endsection