<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: CODEDAIH</title>
    <description>The latest articles on DEV Community by CODEDAIH (@codedaih).</description>
    <link>https://dev.to/codedaih</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1447026%2F22ebb801-2466-4338-877a-ca6fe8d8c48e.jpg</url>
      <title>DEV Community: CODEDAIH</title>
      <link>https://dev.to/codedaih</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/codedaih"/>
    <language>en</language>
    <item>
      <title>Tabs Navigation</title>
      <dc:creator>CODEDAIH</dc:creator>
      <pubDate>Thu, 15 Aug 2024 13:11:34 +0000</pubDate>
      <link>https://dev.to/codedaih/tabs-navigation-17cg</link>
      <guid>https://dev.to/codedaih/tabs-navigation-17cg</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
public function index()
{
    $brandSettings = BrandSetting::all();
    $paymentSettings = PaymentSetting::all();
    $emailSettings = EmailSetting::all();

    return view( settings.index , compact( brandSettings ,  paymentSettings ,  emailSettings ));
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;`@extends( layouts.app )&lt;/p&gt;

&lt;p&gt;@section( content )&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;ul id="pills-tab"&amp;gt;
    &amp;lt;li&amp;gt;
        &amp;lt;a id="site_setting_tab" href="#pills-brand-setting"&amp;gt;{{ __( Brand Settings ) }}&amp;lt;/a&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;
        &amp;lt;a id="pills-payment-setting_tab" href="#pills-payment-setting"&amp;gt;{{ __( Payment Settings ) }}&amp;lt;/a&amp;gt;
    &amp;lt;/li&amp;gt;
    &amp;lt;li&amp;gt;
        &amp;lt;a id="pills-email-settings_tab" href="#pills-email-settings"&amp;gt;{{ __( Email Settings ) }}&amp;lt;/a&amp;gt;
    &amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;




        @foreach($brandSettings as $brandSetting)

                @csrf

                    {{ __( Brand Name ) }}


                Save

            &amp;lt;hr&amp;gt;
        @endforeach




        @foreach($paymentSettings as $paymentSetting)

                @csrf

                    {{ __( Payment Method ) }}


                Save

            &amp;lt;hr&amp;gt;
        @endforeach




        @foreach($emailSettings as $emailSetting)

                @csrf

                    {{ __( Email Address ) }}


                Save

            &amp;lt;hr&amp;gt;
        @endforeach
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;@endsection&lt;br&gt;
`&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
