@extends('layouts.app') @section('title', 'Edit Promosi') @section('breadcrumb') @endsection @section('title-section', 'Edit Promosi') @section('content')
@if ($message = Session::get('success'))
Success:  {{ $message }}
@endif
Tambah Promosi @foreach ($data as $key => $row) @endforeach
# Nama Gambar Promosi Link Status Action
{{ $key + 1 }} {{ $row->nama }} {{ $row->link }} @if ('TAMPIL' == $row->status) {{ $row->status }} @else Tidak Tampil @endif
@method('DELETE') @csrf Edit
@endsection