관리-도구
편집 파일: chiarman.blade.php
@extends('frontend.layouts.app') @section('meta') @include('frontend.includes.meta') @endsection @section('content') <!-- Banner --> <section class="banner pt pb" style="background-image: url( '{{ asset(@$data->og_image) }}'); background-position:center; background-size: cover;"> <div class="container"> <h1>{{getLangValue(@$data->name)}}</h1> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="{{ route('index') }}">{{ __('index.top.home') }}</a></li> <li class="breadcrumb-item active" aria-current="page">{{getLangValue(@$data->name)}}</li> </ol> </nav> </div> </section> <!-- Banner End --> <!-- Blog Page --> <section class="blog-page mt mb"> <div class="container"> <div class="row"> @if (count($chiarmanInterviews) == 0) <h3 class="text-center"> {{ __('index.emptyInfo.noItem') }} </h3> @else @foreach ($chiarmanInterviews as $chiarmanInterview) @php $slug = Str::slug($chiarmanInterview->title); @endphp <div class="col-lg-4 col-md-6"> <div class="blog-wrap" data-aos="flip-left" data-aos-delay="300"> <div class="blog-img"> <a href="{{ route('pageSlug', $slug) }}"><img src="{{ asset($chiarmanInterview->image) }}" alt="{{ $chiarmanInterview->title}}"></a> <div class="date"> {{date('d-M',strtotime(@$chiarmanInterview->created_at))}} </div> </div> <div class="blog-content"> <h3><a href="{{ route('frontend.chiarman', @$chiarmanInterview->slug) }}">{{ $chiarmanInterview->title }}</a></h3> {{-- <p> {!! str::limit($chiarmanInterview->description, $limit = 150, $end = '...') !!} </p> --}} </div> </div> </div> @endforeach @endif </div> {{-- <nav aria-label="Page navigation example"> <span class="pagination-sm m-0 float-right">{{ $news->links() }}</span> </nav> --}} </div> </section> <!-- Blog Page End --> @endsection