@extends('layouts.admin') @section('content')
{{ __('Manage Brands') }}
{{ __('Add New Brand') }}
@if(Session::has('success')) @endif
@foreach($brands as $brand) @endforeach
{{ __('Brand Name') }} {{ __('Logo') }} {{ __('URL') }} {{ __('Options') }}
{{ $brand->name }}
Logo
@if($brand->url) Visit Site @else N/A @endif
@endsection