Created
April 21, 2017 09:03
-
-
Save sumardi/ae9cd88061fa9162d1f1b11545cb5a7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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')); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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