@extends('layouts.backend.app') @section('title', $offer->name) @push('css') @endpush @section('content')
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 |