@extends('layouts.app') @section('title', 'Company Settings - Quotation App') @section('styles') @endsection @section('content')
@if(session('success'))
✓ {{ session('success') }}
@endif

Company Settings

+ Add Company
@if($companies->count() > 0) @foreach($companies as $company) @endforeach
# Logo Company Name City, State Phone Email Status Actions
{{ $loop->iteration }} @if($company->logo_path) @else @endif {{ $company->company_name }} {{ $company->city }}, {{ $company->state }} {{ $company->phone_number }} {{ $company->email }} @if($company->is_active) Active @else Inactive @endif
Edit
@csrf @method('DELETE')
@else

No companies added yet

Click the "Add Company" button to add your first company.

@endif
@endsection