@extends('layouts.app') @section('title', 'Units - EDUC Pharmacy') @section('content')

Units

@if (session('success')) @endif
@if ($units->count() > 0)
@foreach ($units as $unit) @endforeach
ID Name Short Name Allow Decimal Actions
{{ $unit->id }} {{ $unit->name }} {{ $unit->short_name }} @if ($unit->allow_decimal) Yes @else No @endif Edit
@csrf @method('DELETE')
{{ $units->links() }}
@else

No units found. Create one now!

@endif
@endsection