seperate images
This commit is contained in:
@@ -29,12 +29,8 @@ class MainController extends Controller {
|
||||
foreach ($fetchData as $row) {
|
||||
?>
|
||||
<div class="col-md-3 col-sm-6 col-xs-12 list-sport">
|
||||
<!-- <h2 class="text-center">Basketball</h2> -->
|
||||
<div>
|
||||
<!-- <span class="badge">Sale</span> -->
|
||||
<a href="<?php echo url('sports') . "/" . $row->URL; ?>"><img src="<?php echo url('/public'). '/'. $row->Thumbnail; ?>" alt="" class="img img-responsive product-center" /></a>
|
||||
<h3 class="text-center sports-title"><?php echo $row->SportsName ?></h3>
|
||||
</div>
|
||||
<a href="<?php echo url('sports') . "/" . $row->URL; ?>"><img src="<?php echo config('site_config.uploads') . 'sports-thumbnails/' . $row->Thumbnail; ?>" alt="" class="img img-responsive product-center" /></a>
|
||||
<h3 class="text-center sports-title"><?php echo $row->SportsName ?></h3>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
@@ -356,7 +356,7 @@ class DesignerController extends Controller {
|
||||
?>
|
||||
<div class="form-group col-md-3">
|
||||
<div class="thumbnail clipart-thumnail">
|
||||
<a href="#" class="img-clipart" data-link="<?php echo $row->SVGFilename; ?>"><img src="<?php echo config('site_config.images_directory') . 'cliparts/'. $row->SVGFilename; ?>" width="100%"></a>
|
||||
<a href="#" class="img-clipart" data-link="<?php echo $row->SVGFilename; ?>"><img src="<?php echo config('site_config.uploads') . 'cliparts/'. $row->SVGFilename; ?>" width="100%"></a>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
@@ -811,8 +811,8 @@ class DesignerController extends Controller {
|
||||
}
|
||||
|
||||
$arr = array(
|
||||
'small' => config('site_config.images_directory') . $small ,
|
||||
'large' => config('site_config.images_directory') . $large
|
||||
'small' => config('site_config.uploads') . $small ,
|
||||
'large' => config('site_config.uploads') . $large
|
||||
);
|
||||
|
||||
return json_encode($arr);
|
||||
|
||||
@@ -347,7 +347,12 @@ class UserController extends Controller {
|
||||
|
||||
public function storeSetting()
|
||||
{
|
||||
return view('user-layouts.store_setting');
|
||||
$TeamStoreModel = new TeamStoreModel;
|
||||
$store_id = Auth::user()->store_id;
|
||||
|
||||
$store_array = $TeamStoreModel->selectTeamStore('Id', $store_id);
|
||||
return view('user-layouts.store_setting')
|
||||
->with('store_array', $store_array);
|
||||
}
|
||||
|
||||
public function emailVerify()
|
||||
|
||||
Reference in New Issue
Block a user