Skip to content

Commit

Permalink
refs #119 Added missing collection page
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Apr 6, 2024
1 parent 46696a5 commit 2bcc613
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions resources/views/library/collection.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
@extends('layout')
@section('title', 'Чистый код')
@section('description', 'Код должен быть понятен всем членам команды и легко читаем для разработчиков, которые могут внести изменения в него')
@section('content')

<x-header align="align-items-end">
<x-slot name="sup">Декларативный стиль</x-slot>
<x-slot name="title">Высокий уровень через коллекцию</x-slot>
<x-slot name="description">
Опирайтесь на высокие абстракции вместо применения низкоуровневых конструкций.
</x-slot>
<x-slot name="content">
<img src="/img/gusli.svg" class="img-fluid d-block mx-auto">
</x-slot>
</x-header>


@php
$sections = collect([
'basics',
'foreach',
'thinking-in-steps',
'dont-primitives',
])
->map(fn ($file) => \Illuminate\Support\Str::of($file)->start('collection/'))
->map(fn ($file) => new \App\Library($file));
@endphp

@include('particles.library-section', ['sections' => $sections])
@endsection

0 comments on commit 2bcc613

Please sign in to comment.