i kept getting the same error,
undefined variable: theaters on my blade, line 14.
here is my addcine.blade.php line 14
@foreach ($theaters as $theater)
<option value="{{ $theater->name }}"/>
@endforeach
here is my addcinemacontroller
public function index(){
$theaters = Theater::all();
return view('schedules.addcine', compact('name'));
and my route
Route::get('addcinema','AddCinemaController@index');
});