@extends('layouts/contentLayoutMaster') @section('title', 'Edit Course') @section('vendor-style') @endsection @section('page-style') @endsection @section('content')
@csrf @method('PUT')

Course Details

@error('category') {{ $message }} @enderror
@error('fee') {{ $message }} @enderror
@error('start_date') {{ $message }} @enderror
@error('end_date') {{ $message }} @enderror
@error('certificate_issued_at') {{ $message }} @enderror
@error('note') {{ $message }} @enderror

Course Transactions

@php $i = 1; @endphp @if(@$transactions->count() > 0)
@foreach(@$transactions as $transaction) @php $i++; @endphp @endforeach
# Type Amount Created At Actions
{{ @$i}} {{ @$transaction->type}} {{@$transaction->amount}} {{ date('Y-m-d h:i a', strtotime($transaction->created_at)) }}
@else
No Record Found
@endif
@endsection @section('vendor-script') @endsection @section('page-script') @endsection