modal show global

This commit is contained in:
xiaomlove
2022-08-10 17:38:05 +08:00
parent 72b80887a4
commit e9b141fc00
34 changed files with 1106 additions and 175 deletions

View File

@@ -86,14 +86,9 @@ class Test extends Command
*/
public function handle()
{
add_filter('ttt', function ($d) {
$d[] = 100;
return $d;
});
$a = [];
$a[] = '1';
$a = apply_filter('ttt', $a);
dd($a);
$a = Carbon::parse('2022-08-06 23:08:03');
$b = $a->clone()->addHours(1);
dd($a, $b);
}