@extends('inventory.layout') @section('title', 'State') @section('content') @push('head') @endpush
{{($states->currentpage()-1)*$states->perpage()+1}} to {{$states->currentpage()*$states->perpage()}} of {{$states->total()}} entries
@foreach($states as $state) @endforeach
{{ __('Name')}} {{ __('Action')}}
{{ isset($state->name) ? $state->name :'' }}       {{----}}

@push('script') @endpush @endsection