@extends('layouts.app') @section('content')
@include('partials.header') @include('partials.sidebar')

Promotions

@if (session('success')) @endif @if (session('error') || $errors->any()) @endif @if ($promotions->count() > 0)
@foreach ($promotions as $promotion) @endforeach
# Title Mode Description Status Actions
{{ $loop->iteration }} {{ $promotion->title }} @if (!$promotion->is_active) (Inactive) @endif {{ ucfirst($promotion->mode) }}
{{ Str::limit($promotion->description, 80) }}
is_active ? 'checked' : '' }}>
@else

No promotions found.

Create First Promotion
@endif
@endsection