@extends('layouts.app') @section('content')

{{ $title }}

{{-- @endcan --}}
@foreach ($offers as $key => $offer) @endforeach
# Image Start Time End Time Status Actions
{{ $key + 1 }} @if ($offer->image == null)
@else
@endif
{{ $offer->start_date }} {{ $offer->end_date }} @if (auth()->user()->hasRole('admin')) @if ($offer->is_approved == 0) id }} data-status="1" data-action="{{ route('change-status') }}">Approve @elseif($offer->is_approved == 1) id }} data-status="2" data-action="{{ route('change-status') }}">Reject @elseif($offer->is_approved == 2) Rejected @endif @else @if ($offer->is_approved == 0) Pending @elseif($offer->is_approved == 1) Approved @else Rejected @endif @endif {{-- --}}
@endsection @push('script') @endpush