@extends('admin.layout.app') @section('title') Draw @endsection @section('header')

Home - Draw Managment

@can('draws-create')
@endcan
@endsection @section('content')
Draw
@foreach ($draws as $key => $draw) @endforeach
No Title Date Actions
{{ ++$key }} {{ $draw->title }} {{ $draw->date }} @include('admin.draw.actions')
{{ $draws->links('vendor.pagination.bordered-rounded') }}
@endsection @section('script') @endsection