@extends('layouts.master')
@section('title', 'Club List')
@section('style')
@endsection
@section('script')
@endsection
@section('content')
@include('layouts.header')
Club
{{-- Hello! This is Sandbox
--}}
| No. |
Code |
Name |
{{-- Short Name | --}}
|
@foreach ($clublist as $i => $item)
| {{ ++$i }} |
{{ str_pad($item->club_code, 4, '0', STR_PAD_LEFT) }} |
{{ $item->club_name }} |
{{-- {{ $item->club_shortname }} | --}}
{{--
--}}
|
@endforeach
@include('layouts.footer')
@endsection