19 lines
		
	
	
		
			510 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			510 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <x-layout>
 | |
|     <h1 class="py-0">Projects</h1>
 | |
|     <div class="pb-10 text-sm breadcrumbs">
 | |
|         <ul>
 | |
|             <li>
 | |
|                 All Projects
 | |
|             </li>
 | |
|         </ul>
 | |
|     </div>
 | |
|     <div class="flex flex-col gap-2">
 | |
|         @forelse ($projects as $project)
 | |
|             <a href="{{ route('project.show', ['project_uuid' => data_get($project, 'uuid')]) }}"
 | |
|                 class="box">{{ $project->name }}</a>
 | |
|         @empty
 | |
|             No project found.
 | |
|         @endforelse
 | |
|     </div>
 | |
| </x-layout>
 | 
