@extends('admin.layouts.master')
@section('content')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif
@if(session()->has('error'))
{{ session()->get('error') }}
@endif
| Id |
Title |
Duration in Days |
Target Audience |
Action |
@forelse($challenges as $challenge)
| {{ $challenge->id }} |
{{ $challenge->title }} |
{{ $challenge->duration }} |
{{ $challenge->target_audience }} |
|
@empty
| No challenges found |
@endforelse
@endsection