@extends('dashboards.admins.layouts.admin-dash-layout')
@section('title','Dashboard')
@section('content')
{{ DB::table('lands')->count() }}
အိမ်/ခြံ/မြေ
{{ DB::table('kls')->count() }}
ဆောင်းပါးအထွေထွေ
{{ DB::table('sds')->count() }}
ကုသိုလ်ရေး
{{ DB::table('users')->count() }}
User Registrations
| Code No |
မြေကွက်အမှတ် |
မြို့နယ် |
@forelse ($l as $ll)
|
{{ $ll->code_no }}
|
{!! $ll->ln !!}
|
{{ $ll->ts ? $ll->ts->ts : '_' }}
|
@empty
No Data Found!
@endforelse
| Title |
@forelse ($kl as $k)
|
{{ $k->title }}
|
@empty
No Data Found!
@endforelse
| Title |
@forelse ($sd as $d)
|
{{ $d->title }}
|
@empty
No Data Found!
@endforelse
@endsection