@extends('layouts.backend.app') @section('title', $offer->name) @push('css') @endpush @section('content')
@include('manager.offer.topbar')

Tracking Link

@for ($i = 1; $i <= 8; $i++)
@endfor

Offer Information

Name Advertiser
{{ $offer->name }} {{ $offer->advertiser->name }}
Category Status
{{ $offer->category->name }} {{ $offer->status }}
Countries Devices
@if (!empty($offer->countries)) @foreach ($offer->countries as $country) {{ $country->code }} @endforeach @else All Country @endif @if (!empty($offer->devices)) @foreach ($offer->devices as $device) {{ $device->name }} @endforeach @else All Device @endif
@endsection @push('js') @endpush