1 | <?php |
||
2 | |||
3 | namespace App\Tables\Builders; |
||
4 | |||
5 | use App\Chan; |
||
6 | use Illuminate\Database\Eloquent\Builder; |
||
7 | use LaravelEnso\Tables\Contracts\Table; |
||
8 | |||
9 | class ChanTable implements Table |
||
10 | { |
||
11 | protected const TemplatePath = __DIR__.'/../Templates/chans.json'; |
||
12 | |||
13 | public function query(): Builder |
||
14 | { |
||
15 | return Chan::selectRaw(' |
||
0 ignored issues
–
show
Bug
Best Practice
introduced
by
![]() |
|||
16 | chans.id, chans.group, chans.gid, chans.date, chans.time, chans.created_at |
||
17 | '); |
||
18 | } |
||
19 | |||
20 | public function templatePath(): string |
||
21 | { |
||
22 | return static::TemplatePath; |
||
23 | } |
||
24 | } |
||
25 |