Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sumardi/ae9cd88061fa9162d1f1b11545cb5a7e to your computer and use it in GitHub Desktop.
Save sumardi/ae9cd88061fa9162d1f1b11545cb5a7e to your computer and use it in GitHub Desktop.
<?php
.
.
.
public function show(Employee $employee)
{
// $employee->load('projects');
// Cara 1
$employee = $employee->with('projects')->first();
// Cara 2 (recommended)
// $employee->load('projects');
// dd($employee);
return view('employees.show', compact('employee'));
}
@foreach($employee->projects as $project)
Name : {{ $project->project_name }}
@endforeach
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment