@extends('layouts.admin') @section('h1') Price units @stop @section('content')
@if (count($objects) > 0)
@foreach($objects as $object) @endforeach
Title Is Active Updated Created Actions
{{ $object->admin_title}} {{ $object->is_active ? 'yes' : 'no'}} {{$object->updated_at->diffForHumans()}} {{$object->created_at->diffForHumans()}} {!!Form::open(['route' => ['admin.meta.price-units.destroy', $object->id], 'method' => 'delete'])!!} {!!Form::close()!!}
{!!$objects->render()!!}
@else No items. @endif
@stop @section('footer_js') @stop