@extends('inventory.layout') @section('title', 'Users') @section('content') @push('head') @endpush
{{($users->currentpage()-1)*$users->perpage()+1}} to {{$users->currentpage()*$users->perpage()}} of {{$users->total()}} entries
@foreach($users as $user) @endforeach
{{ __('Advocate Name')}} {{ __('Email')}} {{ __('Is Admin')}} {{ __('Action')}}
{{ isset($user->name) ? $user->name :'' }} {{ isset($user->email) ? $user->email :'' }} {{ isset($user->post_id) ? $user->post_id :'' }}

@push('script') @endpush @endsection