I have faced the issue for Undefined variable: images - Error message. Please check the below codes. Please support me.
'Route::get('partials/recent-gallery','ImageGalleryController@recentview');'
'public function recentview()
{
$images = ImageGallery::all();
return view('partials.recent-gallery', ['images' => $images]);
}'
---Home Page '@include('partials/recent-gallery')'
---- View page-----recent-gallery.blade.php------
'@if($images->count())
@foreach($images as $image)
{{ $image->galley_image }}
@endforeach
@endif'
-------------------ERROR---------------
$images is undefined
image parametersto the view with@include('partials/recent-gallery', ['images' => $images]). documentation