16 lines
		
	
	
	
		
			551 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			551 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php $categories = app('config')->get('projects'); ?>
 | 
						|
@extends('layouts.default')
 | 
						|
@section('title', 'projects')
 | 
						|
@section('description', 'My projects')
 | 
						|
@section('content')
 | 
						|
    @foreach ($categories as $category)
 | 
						|
    <h1>{{ $category['name']}}</h1>
 | 
						|
    @foreach ($category['projects'] as $project)
 | 
						|
    <div>
 | 
						|
            <a href="{{ $project['url'] }}">{{ $project['name'] }}</a> - {{ $project['description'] }}<br/>
 | 
						|
            <b>Languages:</b> {{ implode(", ", $project['languages']) }}
 | 
						|
        </div>
 | 
						|
        <br/>
 | 
						|
    @endforeach
 | 
						|
@endforeach
 | 
						|
@stop
 |