@extends('layout.app')
@section('content')
Feedback Logo List
ID |
Logo |
Title |
Content |
Action |
@if (!empty($feedback))
@foreach($feedback as $state)
{{$state->id}} |
@if($state->logo)
@else
No image found!
@endif
|
{{$state->content1}} |
{{$state->content2}} |
|
@endforeach
@else
No feedback found. |
@endif
@endsection