@extends('layouts.simple.master')
@section('title', 'Featured Contests List')
@section('css')
@endsection
@section('style')
@endsection
@section('breadcrumb-title')
Featured Contests
@endsection
@section('breadcrumb-items')
Contest Management
Featured Contests
@endsection
@section('content')
Id |
Name |
Sort |
Price |
Actions |
@if (count($contests) > 0)
@foreach ($contests as $index => $contest)
{{ $contest->id }} |
{{ $contest->title }} |
{{ $contest->sort }} |
{{ $contest->price }} |
|
@endforeach
@endif
@endsection
@section('script')
@endsection