Projekt

Obecné

Profil

Stáhnout (3.15 KB) Statistiky
| Větev: | Tag: | Revize:
1
@extends('layouts.app')
2

    
3
@section('title', 'Charts')
4

    
5
@section('content')
6
    <div class="container">
7
        @if(isset($artefacts))
8
            @if(count($artefacts) >= 1)
9
                <div class="fav-cat-mybooks">
10
                    <h1>Charts</h1>
11
                </div>
12
                @foreach($artefacts as $artefact)
13
                    <div class="artefacts-area mb-5">
14
                        <div class="card">
15
                            <div class="container card-cus-bottom">
16
                                <div class="d-flex flex-row row-list">
17
                                    <div class="p-1 flex-fill bd-highlight left_panel_info">
18
                                        <a href="{{ url('/artefact/' . $artefact->id) }}">
19
                                            <h5 class="card-title highlight-white">{{$artefact->name}}</h5>
20
                                        </a>
21
                                        <h6 class="card-title ">{{$artefact->author}}</h6>
22

    
23
                                    </div>
24
                                    <div class="p-1 flex-fill bd-highlight float-center">
25
                                        <div class="text-center right_panel_info">
26

    
27
                                            <div class="charts float-center">
28
                                                @if (!$artefact->favourite)
29
                                                    <a href="{{  action('ArtefactController@like', ['id' => $artefact->id]) }}">
30
                                                        <button id="like_butt_{{$artefact->id}}" type="button"
31
                                                                class="btn btn-primary button-image inter_like"></button>
32
                                                    </a>
33
                                                @else
34
                                                    <a href="{{  action('ArtefactController@unlike', ['id' => $artefact->id]) }}">
35
                                                        <button id="like_butt_{{$artefact->id}}" type="button"
36
                                                                class="btn btn-primary button-image inter_like_filled"></button>
37
                                                    </a>
38
                                                @endif
39
                                                <h6 class="artefact-likes">{{$artefact->likes}}</h6>
40
                                            </div>
41
                                        </div>
42
                                    </div>
43
                                </div>
44
                            </div>
45
                        </div>
46
                    </div>
47
                @endforeach
48
            @else
49
                <ul class="list-group">
50
                    <li class="list-group-item">
51
                        <h3>No artefacts were added!</h3>
52
                    </li>
53
                </ul>
54
            @endif
55
        @else
56
            <ul class="list-group">
57
                <li class="list-group-item">
58
                    <h3>Not found the USER in the database with number id {{$user->id}}!</h3>
59
                </li>
60
            </ul>
61
        @endif
62
    </div>
63
@endsection
    (1-1/1)