Skip to content

PHP code snippet – How to pass data to controller in laravel?

$dept = DB::table('master_department')->get();
$design = DB::table('master_designation')->get();
return view('registration', ['dept' => $dept], compact('design'));

#if we send as array
@foreach($dept as $key=>$d)
	{{ $dept[$key]->dept_title }}
@endforeach

#if we send as compact object
@foreach($design as $deg)
	<option value="{{ $deg->id }}">{{ $deg->deg_title }}</option>							
@endforeach
See also  How to filter data in Java?
, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.