@extends('layout.template') @section('content')

Charity Report

Filter
@if(Session::has('success'))
{{Session::get('success')}}
{{ Session::flash('alert-success', 'success') }} @endif @if(Session::has('fail'))
{{Session::get('fail')}}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection