1// Here `test-file.blade.php` is the view file and
2// We are passong `is_footer_messages` = true
3
4@include('test-file', [ 'is_footer_messages' => true ])
5
6// Access this vairable now in `test-file.blade.php`
7{{ $is_footer_messages }}
8
1use TCG\Voyager\Models\Jobtype;
2
3class FormController extends Controller
4{
5public function index()
6{
7 $category = Jobtype::all();
8 return view('contact', compact('category'));
9
10}
11}
12