@extends('inventory.layout') @section('title', 'Post') @section('content') @push('head') @endpush
{{($posts->currentpage()-1)*$posts->perpage()+1}} to {{$posts->currentpage()*$posts->perpage()}} of {{$posts->total()}} entries  Add Post
@foreach($posts as $post) @endforeach
{{ __('Post Name')}} {{ __('Purpose')}} {{ __('Status')}} {{ __('Action')}}
{{ isset($post->name) ? $post->name :'' }} {{ isset($post->purpose) ? $post->purpose :'' }}                  

@push('script') @endpush @endsection