Completed
Push — master ( 665333...49dc1a )
by Yaro
18:38 queued 08:40
created

HistoryAction::render()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Yaro\Jarboe\Table\Actions;
4
5
class HistoryAction extends AbstractAction
6
{
7
    protected $ident = 'history';
8
9
    public function render($model = null)
10
    {
11
        return view('jarboe::crud.actions.history', [
12
            'crud' => $this->crud(),
13
            'model' => $model,
14
            'action' => $this,
15
        ]);
16
    }
17
}
18