@extends('inventory.layout')
@section('title', 'Post')
@section('content')
@push('head')
@endpush
{{ __('Post Name')}} |
{{ __('Purpose')}} |
{{ __('Status')}} |
{{ __('Action')}} |
@foreach($posts as $post)
{{ isset($post->name) ? $post->name :'' }} |
{{ isset($post->purpose) ? $post->purpose :'' }} |
|
|
@endforeach
@push('script')
@endpush
@endsection