@lang('View Offers')
{{csrf_field()}}
@if($offers) @foreach($offers as $offer) @endforeach @endif
@lang('ID') @lang('Image') @lang('Position') @lang('Priority') @lang('Status') @lang('Created') @lang('Action')
{{$loop->iteration}} @if($offer->photo) @php $image_url = \App\Helpers\Helper::check_image_avatar($offer->photo->name, 50); @endphp {{$offer->name}} @else {{$offer->name}} @endif {{$offer->position}} {{$offer->priority}} {{$offer->is_active ? __('Active') : __('Inactive')}} {{$offer->created_at}}