{{-- Extends layout --}} @extends('admin.layouts.app') {{-- Content --}} @section('content')

{{ __('Forum Listesi') }}

{{ __('Yeni Forum Ekle') }}
@foreach ($records as $record) @endforeach
{{ __('Link') }} {{ __('Başlık') }} {{ __('İşlemler') }}
{{ $record->form_link ?? null }} {{ $record->title }} {{ __('Güncelle') }} {{ __('Sil') }}
@csrf @method('DELETE')
{{ $records->links() }}
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') @endsection