See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
\DB::enableQueryLog(); | |
$all = TrainingDetail::event() | |
->with(['student' => function($query) use($request) { | |
$query->where('myb_fullname', 'LIKE', '%'.$request->search.'%'); | |
$query->groupBy('id'); | |
}]) | |
->with(['teacher' => function($query) use($request) { | |
$query->where('myb_fullname', 'LIKE', '%'.$request->search.'%'); | |
$query->groupBy('id'); | |
}]) |
See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs