@extends('layouts.app') @section('title', 'Offers') @section('content_header')

Offers

@endsection @section('content_body') Create New Offer
@if (session('success'))
{{ session('success') }}
@endif @foreach ($offers as $offer) @endforeach
Id Offer Title Hotel Template Actions
{{ $offer->id}} {{ $offer->offer_title }} {{ isset($offer->hotel) ? $offer->hotel->name : '' }} {{ $offer->template_type }} Edit
@csrf
{{-- --}} {{-- Download PDF --}} Download PDF
{{ $offers->links('pagination::bootstrap-4') }}
@endsection