2022-11-14 11:39:26 +00:00
|
|
|
@extends('layouts.admin')
|
|
|
|
|
2022-11-16 01:52:53 +00:00
|
|
|
@section('title', '首页')
|
|
|
|
|
2022-11-14 11:39:26 +00:00
|
|
|
@section('content')
|
2022-11-20 03:51:19 +00:00
|
|
|
<h2>今年的收益</h2>
|
2022-11-14 11:39:26 +00:00
|
|
|
|
2022-11-20 03:51:19 +00:00
|
|
|
@foreach($modules as $module)
|
|
|
|
@php($years = $module->calculate())
|
2022-11-14 11:39:26 +00:00
|
|
|
|
2022-11-20 03:51:19 +00:00
|
|
|
<h3 class="mb-3">{{ $module->name }}</h3>
|
|
|
|
<div class="mt-3">
|
|
|
|
<x-module-earning :module="$module"/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@endforeach
|
|
|
|
|
|
|
|
|
|
|
|
{{ $modules->links() }}
|
2022-11-14 11:39:26 +00:00
|
|
|
@endsection
|