Anons79 Mini Shell

Directory : /home/proudlyafrican/public_html/resources/views/admin/socials/
Upload File :
Current File : /home/proudlyafrican/public_html/resources/views/admin/socials/list.blade.php

@extends('admin.head')
@section('middle')
<section class="content">
    @if(Session::has('msg'))
    <div class="alert alert-success" id="success-alert">
        <button type="button" class="close" data-dismiss="alert">x</button>
        <p  align="center" style="font-weight: bold; font-size: 13px; color: white"> Success: {{ Session::get('msg') }} </p>
    </div>
    <br>
    @endif

    @if(Session::has('msg2'))

    <div class="alert alert-danger" id="success-alert">
        <button type="button" class="close" data-dismiss="alert">x</button>
        <p  align="center" style="font-weight: bold; font-size: 13px; color: white"> Success: {{ Session::get('msg2') }} </p>
    </div>
    <br>
    @endif


    <div class="row">
        <div class="col-xs-12">

            <div class="box">
                <div class="box-header">
                    <h3 class="box-title">Socials List</h3>
                </div>
                <!-- /.box-header -->
                <div class="box-body">

                    <table class="table table-striped table-hover">
                        <thead>
                        <tr>
                            <th>Facebook</th>
                            <th>Twitter</th>
                            <th>Youtube</th>
                            <th>Instagram</th>
                            <th>TikTok</th>

                            <th>Action</th>
                        </tr>
                        </thead>
                        <tbody>
                        @foreach($socials as $social)
                        <tr>
                            <td>
                                {{ $social->facebook }}<br>
                                @if($social->facebook_status=='E')
                                <span style="color: #008000; font-weight: bold">(Enable)</span>
                                @else
                                <span style="color: red; font-weight: bold">(Disable)</span>
                                @endif
                            </td>
                            <td>
                                {{ $social->twitter }}<br>
                                @if($social->twitter_status=='E')
                                <span style="color: #008000; font-weight: bold">(Enable)</span>
                                @else
                                <span style="color: red; font-weight: bold">(Disable)</span>
                                @endif
                            </td>
                            <td>
                                {{ $social->youtube }}<br>
                                @if($social->youtube_status=='E')
                                <span style="color: #008000; font-weight: bold">(Enable)</span>
                                @else
                                <span style="color: red; font-weight: bold">(Disable)</span>
                                @endif

                            </td>
                            <td>
                                {{ $social->instagram }}<br>
                                @if($social->instagram_status=='E')
                                <span style="color: #008000; font-weight: bold">(Enable)</span>
                                @else
                                <span style="color: red; font-weight: bold">(Disable)</span>
                                @endif
                            </td>
                            <td>
                                {{ $social->tiktok }}<br>
                                @if($social->tiktok_status=='E')
                                <span style="color: #008000; font-weight: bold">(Enable)</span>
                                @else
                                <span style="color: red; font-weight: bold">(Disable)</span>
                                @endif
                            </td>
                            <td>

                                <a href="{{ url('edit_social') }}/{{ $social->id }}" class="btn btn-primary"><i class="glyphicon glyphicon-pencil"></i></a>

                            </td>
                        </tr>
                        @endforeach
                        </tbody>
                    </table>
                </div>
                <!-- /.box-body -->
            </div>
            <!-- /.box -->
        </div>
        <!-- /.col -->
    </div>
    <!-- /.row -->
</section>
@endsection

Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]