Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function index() |
||
25 | { |
||
26 | $this->seo()->setTitle('My Projects'); |
||
27 | $this->seo()->setDescription('Here is where you can access all of your projects to log time, create milestones etc.'); |
||
28 | |||
29 | $projects = auth()->user()->projects; |
||
30 | |||
31 | return view('home', compact('projects')); |
||
32 | } |
||
34 |