@extends('admin.layouts.admin')
@section('title')
index offer
@endsection
@section('style')
@endsection
@section('content')
لیست پیشنهاد ها ({{ $offers->total() }})
ایجاد پیشنهاد
# |
تصویر محصول |
عنوان |
تصویر پسزمینه |
لینک دکمه |
نوع نمایش |
عملیات |
@foreach ($offers as $key => $offer)
{{ $offers->firstItem() + $key }}
|
@if($offer->product_image==null)
بدون تصویر
@else
@endif
|
{{ $offer->title==null ? '-' : $offer->title }}
|
@if($offer->bg_image==null)
بدون تصویر
@else
@endif
|
{{ $offer->button_link }}
|
{{ $offer->type==2 ? 'دو ستونه' : 'سه ستونه' }}
|
|
@endforeach
{{ $offers->render() }}
@endsection