@extends('layouts.'.env('THEME')) @section('style') @endsection() @section('content')
Add
@php $filter_fields = [ 'id' => ['type' => 'text'], 'title' => ['type' => 'text'], 'area' => [ 'type' => 'select', 'options' => $areas ] ]; @endphp
@foreach($offers as $offer) @endforeach
ID Title Areas Subscription Installation Activation Action
{{ $offer->id }} {{ substr($offer->title, 0, 100) }} @foreach($offer->areas as $area) {!! $area->name !!} @endforeach {{ $offer->discount_subscription }} {{ $offer->discount_install }} {{ $offer->discount_activation }} Edit
{{ csrf_field() }} @method('DELETE')
@endsection