16 lines
307 B
Plaintext
Executable File
16 lines
307 B
Plaintext
Executable File
<?php
|
|
namespace App\Services;
|
|
|
|
use App\Models\tg_comm;
|
|
|
|
class TgComm
|
|
{
|
|
public static function TgComm($data){
|
|
tg_comm::TgComm2Arr();
|
|
$tg_comm = include Storage::disk('dataconfig')->path('tg_comm.php');
|
|
$TgComm = array_column($tg_comm, 'command');
|
|
return $TgComm;
|
|
}
|
|
|
|
}
|