->orderBy('ads_date', 'desc')
->explain();
return response()->json(['explain'=>$explain], 200);
Extra: "Using where; Using filesort"
filtered: 10
id: 1
key: null
key_len: null
partitions: null
possible_keys: null
ref: null
rows: 61665
select_type: "SIMPLE"
table: "kvartiras"
type: "ALL"
->where('ads_date', '2023-04-01')
->explain();
Extra: "Using where"
filtered: 10
id: 1
key: "ads_date"
key_len: "4"
partitions: null
possible_keys: "ads_date"
ref: "const"
rows: 2541
select_type: "SIMPLE"
table: "kvartiras"
type: "ref"
onClustererMounted(e) {
e.component.exposed.events.add('balloonopen', (e)=>{
console.log(e.get("target"))
});
},
$credentials = $request->only('email', 'password');
if($token = $this->guard()->attempt($credentials)){
Спасибо за помощь, то что нужно, это решило мою проблему.