-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathCell.php
59 lines (48 loc) · 1.06 KB
/
Cell.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
namespace Yajra\DataTables\Html;
use Illuminate\Support\Fluent;
/**
* @property string $column
* @property string $content
*/
class Cell extends Fluent
{
/**
* @param array $attributes
*/
public function __construct(array $attributes = [])
{
$attributes['attributes'] ??= [];
parent::__construct($attributes);
}
/**
* Make a new column instance.
*/
public static function make(array|string $data = [], string $content = ''): static
{
$attributes = $data;
if (is_string($data)) {
$attributes = [
'column' => $data,
'content' => $content,
];
}
return new static($attributes);
}
/**
* @return $this
*/
public function column(string $value): static
{
$this->attributes['column'] = $value;
return $this;
}
/**
* @return $this
*/
public function content(string $value): static
{
$this->attributes['content'] = $value;
return $this;
}
}