aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pages/projects.blade.php
blob: aad454b4b6b0321a8ce88959ced90b3c7c078900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php $categories = app('config')->get('projects'); ?>
@extends('layouts.default')
@section('title', 'Projects')
@section('description', 'My projects')
@section('content')
    @foreach ($categories as $category)
    <h2>{{ $category['name']}}</h2>
    @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