2023-06-14 22:07:28 +01:00
|
|
|
<?php $categories = app('config')->get('projects'); ?>
|
|
|
|
@extends('layouts.default')
|
2023-06-14 23:50:57 +01:00
|
|
|
@section('title', 'projects')
|
|
|
|
@section('description', 'My projects')
|
2023-06-14 22:07:28 +01:00
|
|
|
@section('content')
|
|
|
|
@foreach ($categories as $category)
|
2023-06-14 23:35:47 +01:00
|
|
|
<h1>{{ $category['name']}}</h1>
|
|
|
|
@foreach ($category['projects'] as $project)
|
2023-06-14 22:07:28 +01:00
|
|
|
<div>
|
2023-06-14 23:35:47 +01:00
|
|
|
<a href="{{ $project['url'] }}">{{ $project['name'] }}</a> - {{ $project['description'] }}<br/>
|
|
|
|
<b>Languages:</b> {{ implode(", ", $project['languages']) }}
|
2023-06-14 22:07:28 +01:00
|
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
@endforeach
|
|
|
|
@endforeach
|
|
|
|
@stop
|