@extends('layouts.app') @section('title', __('dashboard.sidebar_units_measure')) @section('page_heading', __('dashboard.sidebar_units_measure')) @section('content') @php $currentState = $state ?? request('state', 'active'); @endphp
| # | {{ __('dashboard.name') }} | {{ __('dashboard.created_at') }} | {{ __('dashboard.actions') }} |
|---|---|---|---|
| {{ $loop->iteration }} |
{{ $unit->name }}
@if($unit->trashed())محذوف@endif
|
{{ $unit->created_at->format('Y-m-d') }} |
@canany(['edit units of measure','delete units of measure'])
@if($unit->trashed())
@else
@can('edit units of measure'){{ __('dashboard.edit') }}@endcan
@can('delete units of measure')
@endcan
@endif
|