20 | {{ trans('cruds.asset.fields.id') }} 21 | | 22 |23 | {{ $asset->id }} 24 | | 25 |
---|---|
28 | {{ trans('cruds.asset.fields.name') }} 29 | | 30 |31 | {{ $asset->name }} 32 | | 33 |
36 | {{ trans('cruds.asset.fields.description') }} 37 | | 38 |39 | {{ $asset->description }} 40 | | 41 |
44 | Danger level 45 | | 46 |47 | {{ $asset->danger_level }} 48 | | 49 |
20 | {{ trans('cruds.permission.fields.id') }} 21 | | 22 |23 | {{ $permission->id }} 24 | | 25 |
---|---|
28 | {{ trans('cruds.permission.fields.title') }} 29 | | 30 |31 | {{ $permission->title }} 32 | | 33 |
20 | {{ trans('cruds.role.fields.id') }} 21 | | 22 |23 | {{ $role->id }} 24 | | 25 |
---|---|
28 | {{ trans('cruds.role.fields.title') }} 29 | | 30 |31 | {{ $role->title }} 32 | | 33 |
36 | {{ trans('cruds.role.fields.permissions') }} 37 | | 38 |39 | @foreach($role->permissions as $key => $permissions) 40 | {{ $permissions->title }} 41 | @endforeach 42 | | 43 |
20 | {{ trans('cruds.team.fields.id') }} 21 | | 22 |23 | {{ $team->id }} 24 | | 25 |
---|---|
28 | {{ trans('cruds.team.fields.name') }} 29 | | 30 |31 | {{ $team->name }} 32 | | 33 |
14 | Created at 15 | | 16 |17 | {{ trans('cruds.transaction.fields.asset') }} 18 | | 19 |20 | {{ trans('cruds.transaction.fields.user') }} 21 | | 22 |23 | {{ trans('cruds.transaction.fields.stock') }} 24 | | 25 |
---|---|---|---|
31 | {{ $transaction->created_at}} 32 | | 33 |34 | {{ $transaction->asset->name ?? '' }} 35 | | 36 |37 | {{ $transaction->user->name ?? '' }} 38 | | 39 |40 | {{ $transaction->stock ?? '' }} 41 | | 42 | 43 |
20 | {{ trans('cruds.transaction.fields.id') }} 21 | | 22 |23 | {{ $transaction->id }} 24 | | 25 |
---|---|
28 | {{ trans('cruds.transaction.fields.asset') }} 29 | | 30 |31 | {{ $transaction->asset->name ?? '' }} 32 | | 33 |
36 | {{ trans('cruds.transaction.fields.user') }} 37 | | 38 |39 | {{ $transaction->user->name ?? '' }} 40 | | 41 |
44 | {{ trans('cruds.transaction.fields.stock') }} 45 | | 46 |47 | {{ $transaction->stock }} 48 | | 49 |
20 | {{ trans('cruds.user.fields.id') }} 21 | | 22 |23 | {{ $user->id }} 24 | | 25 |
---|---|
28 | {{ trans('cruds.user.fields.name') }} 29 | | 30 |31 | {{ $user->name }} 32 | | 33 |
36 | {{ trans('cruds.user.fields.email') }} 37 | | 38 |39 | {{ $user->email }} 40 | | 41 |
44 | {{ trans('cruds.user.fields.email_verified_at') }} 45 | | 46 |47 | {{ $user->email_verified_at }} 48 | | 49 |
52 | {{ trans('cruds.user.fields.roles') }} 53 | | 54 |55 | @foreach($user->roles as $key => $roles) 56 | {{ $roles->title }} 57 | @endforeach 58 | | 59 |
{{ trans('global.reset_password') }}
10 | 11 | @if(session('status')) 12 |{{ trans('global.reset_password') }}
10 | 11 | 46 |Hospital | 24 |Asset | 25 |Items of transactions | 26 |Items left | 27 | 28 | 29 | @foreach($transactions as $transaction) 30 | @if($loop->index == 10) 31 | @break; 32 | @endif 33 |
---|---|---|---|
{{ $transaction->team->name }} | 35 |{{ $transaction->asset->name }} | 36 |{{ $transaction->sum }} | 37 |{{ $transaction->current_stock }} | 38 |
Log in to view more transactions
44 | @endif 45 | @else 46 |