@extends('admin.layout')
@section('title', 'Edit Ads - ' . $ad->name)
@section('content')
@if($errors->any())
Ada kesalahan:
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if(session('success'))
{{ session('success') }}
@endif
{{-- Info --}}
Info Ads
| ID |
{{ $ad->id }} |
| Slug |
{{ $ad->slug }} |
| Digunakan oleh |
Direct Link:
https://example.com/landing-page
@php $domainsCount = $ad->domains()->count(); @endphp
{{ $domainsCount }} domain
@if($domainsCount > 0)
({{ $ad->domains->pluck('domain_name')->join(', ') }})
@endif
|
| Dibuat |
{{ $ad->created_at->format('d M Y H:i') }} |
| Diupdate |
{{ $ad->updated_at->format('d M Y H:i') }} |
@endsection