@extends('user.layout') @php $userDefaultLang = \App\Models\User\Language::where([['user_id', \Illuminate\Support\Facades\Auth::guard('web')->user()->id], ['is_default', 1]])->first(); $userLanguages = \App\Models\User\Language::where('user_id', \Illuminate\Support\Facades\Auth::guard('web')->user()->id)->get(); @endphp @section('content')
{{ __('Offer Banner ') }}
@if (!is_null($userDefaultLang)) @if (!empty($userLanguages)) @endif @endif
@if (count($offers) == 0)

{{ __('NO OFFER BANNER FOUND') }}

@else
@foreach ($offers as $key => $feature) @endforeach
# {{ __('Icon') }} {{ __('position') }} {{ __('text 1') }} {{ __('text 2') }} {{ __('text 3') }} {{ __('Actions') }}
{{ $loop->iteration }} ... {{ $feature->position }} {{ $feature->text_1 }} {{ $feature->text_2 }} {{ $feature->text_3 }} {{ __('Edit') }}
@csrf
@endif
@endsection