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

Idea - Payments

@endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

@foreach ($payments as $index => $payment) @endforeach
# Code Name Item Name Category Quantity Amount Date Opration
{{ $index + 1 }} {{ $payment->code->name }} {{ $payment->lab->name }} {{ $payment->course->name }} {{ $payment->qty }} {{ $payment->amount }} {{ $payment->created_at }}
@endsection @section('js') @toastr_js @toastr_render @endsection