@extends('admin.master')
@section('content')
Annonser
Ny annons
| Namn |
Koda |
Tema |
Placera |
Status |
Handling |
@foreach($ads as $ad)
@if($ad->theme == 0)
@php
$theme = "Möte";
@endphp
@elseif($ad->theme == 1)
@php
$theme = "Date";
@endphp
@elseif($ad->theme == 2)
@php
$theme = "Jobbmöte";
@endphp
@elseif($ad->theme == 3)
@php
$theme = "Svensexa";
@endphp
@elseif($ad->theme == 4)
@php
$theme = "Möhippa";
@endphp
@elseif($ad->theme == 5)
@php
$theme = "Middag";
@endphp
@elseif($ad->theme == 6)
@php
$theme = "Resa";
@endphp
@elseif($ad->theme == 7)
@php
$theme = "Fest";
@endphp
@elseif($ad->theme == 8)
@php
$theme = "Födelsedag";
@endphp
@elseif($ad->theme == 9)
@php
$theme = "Kalas";
@endphp
@elseif($ad->theme == 10)
@php
$theme = "Studentskiva";
@endphp
@elseif($ad->theme == 11)
@php
$theme = "Inget tema";
@endphp
@endif
| {{$ad->name}} |
{{$ad->ads_code}} |
{{$theme}} |
{{$ad->position}} |
{{$ad->status}} |
|
@endforeach
@endsection