@extends('main-site.partials.app') @section('title', __('messages_302.Offers')) @section('content')
@forelse ($data as $item)
{{ \Illuminate\Support\Str::limit($item->title, 15, '...') }}

{{ \Illuminate\Support\Str::limit($item->description, 100, '...') }}

@empty @include('main-site.partials.empty_data', ['message'=> __('website_301.offers.NoOffer') ]) @endforelse
@endsection