@extends('layouts.master')
@section('title', 'Organized/Coordinated List')
@section('style')
@endsection
@section('script')
@endsection
@section('content')
@include('layouts.header')
Organized/Coordinated
{{-- Hello! This is Sandbox
--}}
| No. |
Name |
|
@foreach ($organizedlist as $i => $item)
| {{ ++$i }} |
{{ $item->organized_name }} |
{{--
--}}
|
@endforeach
@include('layouts.footer')
@endsection