@extends('layouts.admin', ['title' => 'Кейсы'])
@section('content')
@foreach ($cases as $case)
@foreach ($case->tags_link()->get() as $tag)
{{$tag->tag->name}}
@endforeach
{{\Illuminate\Support\Carbon::parse($case->created_at)->format('d.m.Y')}}
@endforeach
{!! $cases->links() !!}
@endsection
@section('scripts')
@endsection