namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Slide;
use App\About;
public function homepage(){
$slides = Slide::all();
$about = About::whereIn('id', [1,2])->get();
return view ('front.homepage', compact('slides','about'));
}
هل هذا الكود صحيح