@extends('student.layouts.app') @push("styles") @endpush @php if($dataConfigs['brand'] == 'default' || $dataConfigs == 'dark'){ $default_course_image = is_default()['course_blue']; } else { $default_course_image = is_default()['course_green']; } @endphp @section('titlePage', 'Blogs') @section('content') @push('script') @endpush
@include('common.alert')
@foreach ($data as $item)
img

{{$item->title}}

{!! str_limit($item->description, $limit = 74, $end = '...') !!}

Expire Date: {{ now()->addDays($item->validity)->format('d M Y H:i A') }}

View Now
{{-- --}} @endforeach
@endsection