@extends('front.layouts.master',['banner' =>'yeas']) @section('content')
{{-- --}}
@forelse($journals as $journal)

{{$journal->title}}

@foreach($journal->features?->where('home', 1) as $feature)
  • {{$feature->title}}:
    {{$feature->pivot?->value}}
  • @endforeach
  • {{__('front.Publication Frequency')}}:
    {{$journal->freq}}
  • @empty
    {{__('front.not found journals')}}
    @endforelse

    {{__('front.Featured Articles')}}

    @forelse($news as $new)

    {{$new->title}}

    {{$new->created_at->format(' d M Y ')}}

    {!! $new->short_description !!}

    Read More
    @empty
    {{__('not found')}}
    @endforelse

    {{__('front.Most Viewed')}}

    @foreach($mostedView as $journal)

    {{$journal->title}}

    @foreach($journal->features?->take(3) as $feature)
  • {{$feature->title}}:
    {{$feature->pivot?->value}}
  • @endforeach
    {{__('front.Publication Frequency')}}:
    {{$journal->freq}}
    @endforeach
    @endsection