@extends('administrator.layout') @section('admintitle', 'User') @section('content')
@if (session()->has('success')) @endif @if (session()->has('error')) @endif
{{ __('text.users') }} {{ __('text.table') }}
@forelse($data as $d) @empty @endforelse @if(isset($data)) @endif
{{ __('text.firstname') }} {{ __('text.lastname') }} {{ __('text.email') }} {{ __('text.status') }} {{ __('text.action') }}
{{ $d->firstname }} {{ $d->lastname }} {{ $d->email }} @if($d->status==1) {{ __('text.active') }} @else {{ __('text.deactive') }} @endif
{{ __('text.no_records_found') }}
{{ $data->links() }}
@endsection