@extends('backend.master') @section('title', 'Company Setups') @section('content')
@if (session('status')) @endif

Company Setups

Create
@forelse ($companySetups as $setup) {{-- About (truncate) --}} {{-- Telegram --}} {{-- Facebook --}} {{-- Address (truncate) --}} {{-- Favicon --}} {{-- Logo --}} @empty @endforelse
# Name About Phone WhatsApp Email Telegram Facebook Address Favicon Logo Created Updated Actions
{{ $setup->id }} {{ $setup->company_name ?? '—' }} {{ \Illuminate\Support\Str::limit($setup->about_company, 80) ?: '—' }} {{ $setup->phone_number ?? '—' }} {{ $setup->whatsapp_number ?? '—' }} {{ $setup->email ?? '—' }} @if($setup->telegram_link) {{ \Illuminate\Support\Str::limit($setup->telegram_link, 24) }} @else — @endif @if($setup->facebook_link) {{ \Illuminate\Support\Str::limit($setup->facebook_link, 24) }} @else — @endif {{ \Illuminate\Support\Str::limit($setup->address, 50) ?: '—' }} @if($setup->fav_icon) favicon @else — @endif @if($setup->logo) logo @else — @endif {{ optional($setup->created_at)->format('d M Y, h:i A') }} {{ optional($setup->updated_at)->format('d M Y, h:i A') }}
Edit {{-- OPTION A: confirm সহ --}}
@csrf @method('DELETE')
{{-- OPTION B: confirm ছাড়াই (উপরে যেটা ব্যবহার করেছেন, এটা মুছে দিন)
@csrf @method('DELETE')
--}}
No records found.
@if($companySetups->hasPages()) @endif
@endsection