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