@extends('backend/layouts/app') @section('content')
@csrf

{{($editData)?'Update':'New Club'}}

@error('name') {{$message}} @enderror

Others Club List

@foreach($other_clubs as $club) @endforeach
Serial Name Short Name Contact Info. Action
{{(($other_clubs->currentPage()-1) * $other_clubs->perPage()) + ($loop->index + 1)}} {{$club->name}} {{$club->short_name}} {{$club->contact_info}}
@csrf @method('DELETE')
@endsection @section('page_script') @endsection