-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTag.php
More file actions
84 lines (71 loc) · 2.03 KB
/
Copy pathTag.php
File metadata and controls
84 lines (71 loc) · 2.03 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
namespace App;
use Idealogica\Lavanda\Model;
use Idealogica\Lavanda\Descriptor\Descriptor;
use Idealogica\Lavanda\Descriptor\SortDescriptor;
use Idealogica\Lavanda\Descriptor\PresentationDescriptor;
use Kris\LaravelFormBuilder\Form;
use Illuminate\Database\Eloquent\Builder;
class Tag extends Model
{
protected $table = 'lv_tags';
public static function getItemsPerPage()
{
return 5;
}
public static function buildActionsDescriptor(Descriptor $descriptor)
{
$descriptor->
add('create')->
add('edit')->
add('destroy');
}
public static function buildListDescriptor(PresentationDescriptor $descriptor)
{
$descriptor->
add('id', 'text', '#', ['width' => '50px'])->
add('text', 'text', 'Text', ['max_len' => 100]);
}
public static function buildItemDescriptor(PresentationDescriptor $descriptor)
{
$descriptor->
add('id', 'text', '#')->
add('text', 'text', 'Text');
}
public static function buildSearchDescriptor(Descriptor $descriptor)
{
$descriptor->
add('id')->
add('text');
}
public static function buildSortDescriptor(SortDescriptor $descriptor)
{
$descriptor->
add('id', '#')->
add('text', 'Text');
}
public static function buildDeleteDescriptor(Descriptor $descriptor)
{
$descriptor->
add('posts');
}
public static function buildFormQuery(Builder $query)
{
$query->with('posts');
}
public static function buildForm(Form $form, $config)
{
$form->add('text', 'text', [
'label' => 'Tag text',
'rules' => 'required',
'required' => true])->
add('posts', 'lookup', [
'model' => 'App\Post',
'property' => 'title',
'label' => 'Posts']);
}
public function posts()
{
return $this->belongsToMany('App\Post', 'lv_post_tag');
}
}