Akaunting/app/View/Components/Documents/Show/Restore.php

40 lines
1.0 KiB
PHP
Raw Normal View History

2022-06-01 07:15:55 +00:00
<?php
namespace App\View\Components\Documents\Show;
use App\Abstracts\View\Components\Documents\Show as Component;
2023-10-03 08:06:08 +00:00
use Illuminate\Support\Str;
2022-06-01 07:15:55 +00:00
class Restore extends Component
{
public $description;
2023-10-03 08:06:08 +00:00
public $user_name;
public $type_lowercase;
public $last_cancelled;
public $last_cancelled_date;
2022-06-01 07:15:55 +00:00
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
2023-10-03 08:06:08 +00:00
$this->description = 'documents.slider.cancel';
$this->last_cancelled = $this->document->histories()->status('cancelled')->latest()->first();
$this->user_name = ($this->last_cancelled) ? $this->last_cancelled->owner->name : trans('general.na');
$this->type_lowercase = Str::lower(trans_choice($this->textPage, 1));
2022-06-01 07:15:55 +00:00
2023-10-03 08:06:08 +00:00
$this->last_cancelled_date = '<span class="font-medium">' . company_date($this->last_cancelled->created_at) . '</span>';
2022-06-01 07:15:55 +00:00
return view('components.documents.show.restore');
}
}