@extends('inventory.layout') @section('title', 'Tenant') @section('content') @push('head') @endpush
{{($tenants->currentpage()-1)*$tenants->perpage()+1}} to {{$tenants->currentpage()*$tenants->perpage()}} of {{$tenants->total()}} entries  Add Tenant
@foreach($tenants as $tenant) @endforeach
{{ __('Name')}} {{ __('Email')}} {{ __('Mobile')}} {{ __('Action')}}
{{ isset($tenant->name) ? $tenant->name :'' }} {{ isset($tenant->email) ? $tenant->email :'' }} {{ isset($tenant->mobile) ? $tenant->mobile :'' }} {{--     --}}      

@push('script') @endpush @endsection