@extends('backend.template') @section('content')

{{ label('User Lists') }}

{{ label('Add New') }}
@php $i = 1; @endphp @foreach ($users as $item) @endforeach
{{ label('S.N') }} {{ label('Name') }} {{ label('Email') }} {{ label('Created At') }} {{ label('Status') }} {{ label('Action') }}
{{ $i++ }} {{ $item->name }} {{ $item->email }} {{ $item->created_at->diffForHumans() }} @if ($item->status == 1) Active @else Inactive @endif
@endsection @push('css') @endpush @push('js') @endpush