@extends('layouts.master') @section('css') @toastr_css @section('title') Idea-Codes @stop @endsection @section('page-header')

Idea-Codes

@endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach ($codes as $index => $code) @endforeach
# Code Name Exceute Date Oprations
{{ $index + 1 }} {{ $code->name }} {{ $code->execut }} {{ $code->created_at }}
@endsection @section('js') @toastr_js @toastr_render @endsection