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