This commit is contained in:
Frankie B 2023-07-26 00:08:58 +01:00 committed by Frankie B
commit e5c778e7ad
30 changed files with 311 additions and 183 deletions

View file

@ -1,16 +1,16 @@
<?php $categories = app('config')->get('projects'); ?>
@extends('layouts.default')
@section('title', 'projects')
@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/>
<a href="{{ $project['url'] }}">{{ $project['name'] }}</a> - {{ $project['description'] }}<br>
<b>Languages:</b> {{ implode(", ", $project['languages']) }}
</div>
<br/>
<br>
@endforeach
@endforeach
@stop