fix another more query

This commit is contained in:
Jagad R R
2025-01-15 22:44:17 +07:00
parent 91e4a51f03
commit f48b74589e
5 changed files with 7 additions and 6 deletions
@@ -16,7 +16,7 @@ class RegionController extends Controller
session()->put('redirect_url', route('admin.region.index'));
return view('backend.pages.master.region.index', [
'region' => Region::all()
'region' => Region::with('head')->get()
]);
}