sifatbaho
This commit is contained in:
32
resources/views/components/actions/rejected.blade.php
Executable file
32
resources/views/components/actions/rejected.blade.php
Executable file
@@ -0,0 +1,32 @@
|
||||
<!-- REJECTED start item -->
|
||||
@if ($action->type == App\Enums\TrackingActionTypeEnum::REJECTED->name)
|
||||
@if ($params = json_decode("{$action->params}", true))
|
||||
<div class="acitivity-item py-3 d-flex">
|
||||
<div class="flex-shrink-0 avatar-xs acitivity-avatar">
|
||||
<div
|
||||
class="avatar-title bg-soft-success text-success rounded-circle">
|
||||
<img src="{{ URL::asset("{$params['user']['avatar']}") }}"
|
||||
alt="user profile image"
|
||||
class="avatar-xs rounded-circle acitivity-avatar"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex-grow-1 ms-3">
|
||||
<h6 class="mb-1">
|
||||
{{ $params['user']['name'] }}
|
||||
<span class="badge bg-soft-secondary text-secondary align-middle">
|
||||
@lang('translation.'.$action->type)
|
||||
</span>
|
||||
</h6>
|
||||
<p class="text-muted mb-2">
|
||||
<i class="ri-file-text-line align-middle ms-2"></i>
|
||||
{{ __("{$action->msg}") }}
|
||||
</p>
|
||||
<div class="avatar-group mb-2">
|
||||
<p> {{ $params['attachments'][0]. ' '.$params['attachments'][1] }} </p>
|
||||
</div>
|
||||
<small class="mb-0 text-muted">{{ $action->created_at }}</small>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
@endif
|
||||
<!-- REJECTED end item -->
|
||||
Reference in New Issue
Block a user