EditAddButton   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Importance

Changes 2
Bugs 1 Features 1
Metric Value
eloc 8
c 2
b 1
f 1
dl 0
loc 28
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A render() 0 3 1
A __construct() 0 5 1
1
<?php
2
3
namespace Pratiksh\Adminetic\View\Components;
4
5
use Illuminate\Support\Str;
6
use Illuminate\View\Component;
7
8
class EditAddButton extends Component
9
{
10
    public $model;
11
12
    public $name;
13
14
    public $confirm;
15
16
    /**
17
     * Create a new component instance.
18
     *
19
     * @return void
20
     */
21
    public function __construct($model, $name, $confirm = false)
22
    {
23
        $this->model = $model;
24
        $this->name = Str::ucfirst($name);
25
        $this->confirm = $confirm;
26
    }
27
28
    /**
29
     * Get the view / contents that represent the component.
30
     *
31
     * @return \Illuminate\Contracts\View\View|\Closure|string
32
     */
33
    public function render()
34
    {
35
        return view('adminetic::components.edit-add-button');
36
    }
37
}
38